summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois KUBLER <francois@kubler.org>2011-03-09 23:30:55 +0100
committerFrançois KUBLER <francois@kubler.org>2011-03-09 23:30:55 +0100
commit88df5fcd04e0a5d09e99afbca5be9b97e86d373a (patch)
treefd821e1c9bc9d6423d2ff02e6efef2d64259f4cc
parent7faf852561d3aca1cd1f62858d03d5b3daf888f9 (diff)
downloadnextcloud-server-88df5fcd04e0a5d09e99afbca5be9b97e86d373a.tar.gz
nextcloud-server-88df5fcd04e0a5d09e99afbca5be9b97e86d373a.zip
Fixed PHP syntax in skeleton template files.
-rw-r--r--skeleton/templates/index.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/skeleton/templates/index.php b/skeleton/templates/index.php
index f8d8440817f..fb0544e76ed 100644
--- a/skeleton/templates/index.php
+++ b/skeleton/templates/index.php
@@ -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"]; ?>