diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-11-05 16:38:23 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-11-05 16:38:23 +0100 |
commit | be77d81152b584834c90e517ec6ce4271c519fd3 (patch) | |
tree | b9a962fa25ac3e7ca0f2a892310eed8af4a429d7 /core | |
parent | 8c492a86fce1b280a4e1be1108a3037fc8881f25 (diff) | |
download | nextcloud-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.php | 4 |
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"> |