aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-10-06 14:48:12 +0200
committerMario Vavti <mario@mariovavti.com>2018-10-06 14:48:12 +0200
commitc2c891723fc0e56f0c373ca1043cdb548f2ed8ab (patch)
tree999c6c76d4635152334f5848895e6f2a44752f73 /Zotlabs/Lib
parenta5e63aa90ac5a5160e55eea98beb0e867533314b (diff)
downloadvolse-hubzilla-c2c891723fc0e56f0c373ca1043cdb548f2ed8ab.tar.gz
volse-hubzilla-c2c891723fc0e56f0c373ca1043cdb548f2ed8ab.tar.bz2
volse-hubzilla-c2c891723fc0e56f0c373ca1043cdb548f2ed8ab.zip
bookmark app
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/Apps.php2
-rw-r--r--Zotlabs/Lib/ThreadItem.php4
2 files changed, 4 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php
index 826b2db29..d7cea6b7c 100644
--- a/Zotlabs/Lib/Apps.php
+++ b/Zotlabs/Lib/Apps.php
@@ -306,7 +306,7 @@ class Apps {
'Cards' => t('Cards'),
'Admin' => t('Site Admin'),
'Report Bug' => t('Report Bug'),
- 'View Bookmarks' => t('View Bookmarks'),
+ 'Bookmarks' => t('Bookmarks'),
'Chatrooms' => t('Chatrooms'),
'Connections' => t('Connections'),
'Remote Diagnostics' => t('Remote Diagnostics'),
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php
index 48018f66c..78714c2c4 100644
--- a/Zotlabs/Lib/ThreadItem.php
+++ b/Zotlabs/Lib/ThreadItem.php
@@ -2,6 +2,8 @@
namespace Zotlabs\Lib;
+use Zotlabs\Lib\Apps;
+
require_once('include/text.php');
/**
@@ -272,7 +274,7 @@ class ThreadItem {
}
$has_bookmarks = false;
- if(is_array($item['term'])) {
+ if(Apps::system_app_installed(local_channel(), 'Bookmarks') && is_array($item['term'])) {
foreach($item['term'] as $t) {
if(($t['ttype'] == TERM_BOOKMARK))
$has_bookmarks = true;