summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-11-05 16:38:23 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-11-05 16:38:23 +0100
commitbe77d81152b584834c90e517ec6ce4271c519fd3 (patch)
treeb9a962fa25ac3e7ca0f2a892310eed8af4a429d7 /core
parent8c492a86fce1b280a4e1be1108a3037fc8881f25 (diff)
downloadnextcloud-server-be77d81152b584834c90e517ec6ce4271c519fd3.tar.gz
nextcloud-server-be77d81152b584834c90e517ec6ce4271c519fd3.zip
VCategories: Closing brace must be on a line by itself.
Diffstat (limited to 'core')
-rw-r--r--core/templates/edit_categories_dialog.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/edit_categories_dialog.php b/core/templates/edit_categories_dialog.php
index 71448965713..d0b7b5ee62a 100644
--- a/core/templates/edit_categories_dialog.php
+++ b/core/templates/edit_categories_dialog.php
@@ -6,9 +6,9 @@ $categories = isset($_['categories'])?$_['categories']:array();
<form method="post" id="categoryform">
<div class="scrollarea">
<ul id="categorylist">
- <?php foreach($categories as $category) { ?>
+ <?php foreach($categories as $category): ?>
<li><input type="checkbox" name="categories[]" value="<?php echo $category; ?>" /><?php echo $category; ?></li>
- <?php } ?>
+ <?php endforeach; ?>
</ul>
</div>
<div class="bottombuttons">