diff options
author | friendica <info@friendica.com> | 2013-10-14 15:38:05 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-14 15:38:05 -0700 |
commit | f3fcffb29d22066f0ce627faa6af3287dd716698 (patch) | |
tree | 66d2d1fa821a9506238d1d67916dd17d77bacfe8 /view/tpl/item_categories.tpl | |
parent | 9787872778d02d770431386853fa3313f453398e (diff) | |
download | volse-hubzilla-f3fcffb29d22066f0ce627faa6af3287dd716698.tar.gz volse-hubzilla-f3fcffb29d22066f0ce627faa6af3287dd716698.tar.bz2 volse-hubzilla-f3fcffb29d22066f0ce627faa6af3287dd716698.zip |
We really don't need the category delete links on each category in each post with categories, as we can now change the categories by editing the post. So take out the delete links.
Diffstat (limited to 'view/tpl/item_categories.tpl')
-rw-r--r-- | view/tpl/item_categories.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/item_categories.tpl b/view/tpl/item_categories.tpl index 599ad21bd..ec2639a6f 100644 --- a/view/tpl/item_categories.tpl +++ b/view/tpl/item_categories.tpl @@ -1,7 +1,7 @@ {{if $categories}} <div class="categorytags"> {{foreach $categories as $cat}} -<span class="item-category"><i class="icon-asterisk cat-icons"></i> {{if $cat.url}}<a href="{{$cat.url}}">{{$cat.term}}</a>{{else}}{{$cat.term}}{{/if}}{{if $cat.writeable}} <a href="{{$cat.removelink}}" class="category-remove-link" title="{{$remove}}"><i class="icon-remove drop-icons"></i></a>{{/if}}</span> +<span class="item-category"><i class="icon-asterisk cat-icons"></i> {{if $cat.url}}<a href="{{$cat.url}}">{{$cat.term}}</a>{{else}}{{$cat.term}}{{/if}}</span> {{/foreach}} </div> {{/if}} |