Fixed PHP syntax in skeleton template files.

This commit is contained in:
François KUBLER 2011-03-09 23:30:55 +01:00
parent 7faf852561
commit 88df5fcd04
1 changed files with 4 additions and 4 deletions

View File

@ -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"]; ?>