- 🇦🇹Austria klausi 🇦🇹 Vienna
Drupal 7 is not supported anymore, and Drupal 8+ versions do not use TPL files anymore. Closing this as outdated.
Given the following code:
<script>
var minAge = <?= variable_get('foo-min', '13'); // @fixme: Move into Drupal JS settings. ?>
var maxAge = <?= variable_get('foo-max', '13'); // @fixme: Move into Drupal JS settings. ?>
</script>
The Coder "fixes" it into:
<script>
// @fixme: Move into Drupal JS settings. var minAge = <?= variable_get('foo-min', '13');
?>
// @fixme: Move into Drupal JS settings. var maxAge = <?= variable_get('foo-max', '13');
?>
</script>
which is wrong.
Testing command: phpcbf --standard=Drupal foo.tpl.php
I assuming Coder doesn't understand the syntax used here correctly.
Closed: outdated
2.0
Coder Sniffer
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Drupal 7 is not supported anymore, and Drupal 8+ versions do not use TPL files anymore. Closing this as outdated.