aboutsummaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/Service
diff options
context:
space:
mode:
authorrhatto <rhatto@riseup.net>2023-08-30 20:09:49 -0300
committerGitHub <noreply@github.com>2023-08-30 20:09:49 -0300
commit7e5536c3f641567143b31fb9f54468184083ebce (patch)
tree6864121f35e2f2ba9fd06cc1fb096671ace5e6fa /src/SemanticScuttle/Service
parent856e975127fff8f82b14f2886bb4ffb239541555 (diff)
parent8726754cb10f5c8db09f7012574450907af97cfa (diff)
downloadsemanticscuttle-7e5536c3f641567143b31fb9f54468184083ebce.tar.gz
semanticscuttle-7e5536c3f641567143b31fb9f54468184083ebce.tar.bz2
Merge pull request #2 from jasonmm/rector
Update code to work with modern PHP.
Diffstat (limited to 'src/SemanticScuttle/Service')
-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 1315350..ea8762d 100644
--- a/src/SemanticScuttle/Service/Bookmark.php
+++ b/src/SemanticScuttle/Service/Bookmark.php
@@ -734,6 +734,10 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
$tags = explode('+', trim($tags));
}
+ if(!is_array($tags)) {
+ $tags = [];
+ }
+
$tagcount = count($tags);
for ($i = 0; $i < $tagcount; $i ++) {
$tags[$i] = trim($tags[$i]);
@@ -852,6 +856,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 (!count($tags)) {
$query_2 .= ' LEFT JOIN '. $b2tservice->getTableName() .' AS T'