]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Search/Tags.php
Changes:
[friendica.git] / src / Module / Search / Tags.php
index cc43d85b09969c2782d0d3d2d66d284200309f07..cd0b034d78477ec2f0eb978622d6f6d2ca9a672a 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2024, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Search;
 
@@ -40,7 +59,7 @@ class Tags extends BaseModule
                $results = [];
 
                if (empty($tags)) {
-                       System::jsonExit([
+                       $this->jsonExit([
                                'total'      => 0,
                                'items_page' => $perPage,
                                'page'       => $page,
@@ -55,7 +74,7 @@ class Tags extends BaseModule
 
                $totalCount = $this->database->count('owner-view', $condition);
                if ($totalCount === 0) {
-                       System::jsonExit([
+                       $this->jsonExit([
                                'total'      => 0,
                                'items_page' => $perPage,
                                'page'       => $page,
@@ -78,7 +97,7 @@ class Tags extends BaseModule
 
                $this->database->close($searchStmt);
 
-               System::jsonExit([
+               $this->jsonExit([
                        'total'      => $totalCount,
                        'items_page' => $perPage,
                        'page'       => $page,