diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-07-20 17:10:52 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-07-20 17:11:13 +0200 |
commit | ecf8e77dabc5b3e4e0215134a4cd083296aedbd7 (patch) | |
tree | 692486a055ddac0556fe8ad1aa7ba94b199b8937 /apps | |
parent | 7fff38667953028d499f978798b44deccbd55a84 (diff) | |
download | nextcloud-server-ecf8e77dabc5b3e4e0215134a4cd083296aedbd7.tar.gz nextcloud-server-ecf8e77dabc5b3e4e0215134a4cd083296aedbd7.zip |
Remove unused file.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/templates/part.edit_categories_dialog.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/apps/contacts/templates/part.edit_categories_dialog.php b/apps/contacts/templates/part.edit_categories_dialog.php deleted file mode 100644 index 8997fa586bd..00000000000 --- a/apps/contacts/templates/part.edit_categories_dialog.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php -$categories = isset($_['categories'])?$_['categories']:array(); -?> -<div id="edit_categories_dialog" title="<?php echo $l->t('Edit categories'); ?>"> -<!-- ?php print_r($types); ? --> - <form method="post" id="categoryform"> - <div class="scrollarea"> - <ul id="categorylist"> - <?php foreach($categories as $category) { ?> - <li><input type="checkbox" name="categories[]" value="<?php echo $category; ?>" /><?php echo $category; ?></li> - <?php } ?> - </ul> - </div> - <div class="bottombuttons"><input type="text" id="category_addinput" name="category" /><button id="category_addbutton" disabled="disabled"><?php echo $l->t('Add'); ?></button></div> - </form> -</div> |