mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Fixed PHP syntax in skeleton template files.
This commit is contained in:
parent
7faf852561
commit
88df5fcd04
1 changed files with 4 additions and 4 deletions
|
|
@ -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"]; ?>
|
||||
|
|
|
|||
Loading…
Reference in a new issue