Skip to content
Snippets Groups Projects
Commit 88df5fcd authored by François Kubler's avatar François Kubler
Browse files

Fixed PHP syntax in skeleton template files.

parent 7faf8525
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@
?>
<h1>Skeleton</h1>
<? foreach( $_["array"] as $item ){ ?>
<p><? echo $item ?></p>
<? } ?>
<?php foreach($_["array"] as $item): ?>
<p><?php echo $item; ?></p>
<?php endforeach; ?>
<? echo $_["anothervar"] ?>
<?php echo $_["anothervar"]; ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment