Browse code

Templates now use php short open tags

Benjamin Roth authored on17/08/2015 17:19:47
Showing1 changed files
... ...
@@ -1,2 +1,2 @@
1 1
 
2
-<input type="hidden" name="<?php echo $this->name; ?>" value="<?php echo $this->value; ?>">
2
+<input type="hidden" name="<?= $this->name; ?>" value="<?php echo $this->value; ?>">
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,2 @@
1
+
2
+<input type="hidden" name="<?php echo $this->name; ?>" value="<?php echo $this->value; ?>">