aboutsummaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/Service/Bookmark.php
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2023-08-30 20:12:31 -0300
committerSilvio Rhatto <rhatto@riseup.net>2023-08-30 20:12:31 -0300
commit01ebd549e71c82f3df2a7663255001b7c5521aca (patch)
treefe11d016b535b4f886c8c685eb5847b7eca5764d /src/SemanticScuttle/Service/Bookmark.php
parent2c11bf33b106fba2ea510a2aef53067633800ed3 (diff)
parent7e5536c3f641567143b31fb9f54468184083ebce (diff)
downloadsemanticscuttle-master.tar.gz
semanticscuttle-master.tar.bz2
Merge branch 'master' of github.com:rhatto/SemanticScuttleHEADmaster
Diffstat (limited to 'src/SemanticScuttle/Service/Bookmark.php')
-rw-r--r--src/SemanticScuttle/Service/Bookmark.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/SemanticScuttle/Service/Bookmark.php b/src/SemanticScuttle/Service/Bookmark.php
index 40a2b67..8a8946a 100644
--- a/src/SemanticScuttle/Service/Bookmark.php
+++ b/src/SemanticScuttle/Service/Bookmark.php
@@ -736,6 +736,10 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
$tags = explode('+', trim($tags));
}
+ if(!is_array($tags)) {
+ $tags = [];
+ }
+
$tagcount = empty($tags) ? 0 : count($tags);
for ($i = 0; $i < $tagcount; $i ++) {
$tags[$i] = trim($tags[$i]);
@@ -854,6 +858,10 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
$aTerms = explode(' ', $terms);
$aTerms = array_map('trim', $aTerms);
+ if(!is_array($tags)){
+ $tags = [];
+ }
+
// Search terms in tags as well when none given
if (!empty($tags)) {
$query_2 .= ' LEFT JOIN '. $b2tservice->getTableName() .' AS T'