Browse code

Templates now use php short open tags

Benjamin Roth authored on17/08/2015 17:19:47
Showing1 changed files
... ...
@@ -1,3 +1,3 @@
1 1
 <?php $this->block('addSubmit'); ?>
2
-    <button type="submit" id="ctrl_<?php echo $this->id; ?>_submit" class="submit"><?php echo $this->slabel; ?></button>
2
+    <button type="submit" id="ctrl_<?= $this->id; ?>_submit" class="submit"><?php echo $this->slabel; ?></button>
3 3
 <?php $this->endblock(); ?>
Browse code

Initial commit

Benjamin Roth authored on27/03/2015 10:45:40
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,3 @@
1
+<?php $this->block('addSubmit'); ?>
2
+    <button type="submit" id="ctrl_<?php echo $this->id; ?>_submit" class="submit"><?php echo $this->slabel; ?></button>
3
+<?php $this->endblock(); ?>