diff options
author | Friendika <info@friendika.com> | 2010-11-08 14:37:58 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-08 14:37:58 -0800 |
commit | 01f171bce71126f60cf0ef9b447006b34c5a3891 (patch) | |
tree | 2017a67a9ff9dee10e2ef2b4283da7db6cc31945 /mod/photos.php | |
parent | efcff9145605847f794009b0fe6c8bb4879a86a3 (diff) | |
download | volse-hubzilla-01f171bce71126f60cf0ef9b447006b34c5a3891.tar.gz volse-hubzilla-01f171bce71126f60cf0ef9b447006b34c5a3891.tar.bz2 volse-hubzilla-01f171bce71126f60cf0ef9b447006b34c5a3891.zip |
ability to remove individual photo tags
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/photos.php b/mod/photos.php index 8957751cf..97587cbb5 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -850,6 +850,8 @@ function photos_content(&$a) { $tag_str .= bbcode($t); } $o .= $tag_str . '</div>'; + if($cmd === 'edit') + $o .= '<div id="tag-remove"><a href="' . $a->get_baseurl() . '/tagrm/' . $link_item['id'] . '">' . t('[Remove any tag]') . '</a></div>'; } |