diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-03-10 19:39:38 +0100 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-03-10 19:40:28 +0100 |
commit | 107f80892a19f0ccd0cd30a0e3fc5ce3a41829b7 (patch) | |
tree | 59a614631fddf5ab3d955d6a87cf30e96e769061 /include/ItemObject.php | |
parent | fbcb711945353fe26681f05839b728ade74317c9 (diff) | |
download | volse-hubzilla-107f80892a19f0ccd0cd30a0e3fc5ce3a41829b7.tar.gz volse-hubzilla-107f80892a19f0ccd0cd30a0e3fc5ce3a41829b7.tar.bz2 volse-hubzilla-107f80892a19f0ccd0cd30a0e3fc5ce3a41829b7.zip |
UNO: Hide bookmark tools in items (#^ and in menu)
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index da019a30a..d42e993e6 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -241,7 +241,7 @@ class Item extends BaseObject { $has_bookmarks = false; if(is_array($item['term'])) { foreach($item['term'] as $t) { - if($t['type'] == TERM_BOOKMARK) + if(!UNO && $t['type'] == TERM_BOOKMARK) $has_bookmarks = true; } } |