]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fixed PHP syntax in skeleton template files.
authorFrançois KUBLER <francois@kubler.org>
Wed, 9 Mar 2011 22:30:55 +0000 (23:30 +0100)
committerFrançois KUBLER <francois@kubler.org>
Wed, 9 Mar 2011 22:30:55 +0000 (23:30 +0100)
skeleton/templates/index.php

index f8d8440817f994d939a0be44327444e50d94dc4a..fb0544e76ed6aad8bde10e61a99c1c2d4f8d5648 100644 (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"]; ?>