aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Hashtags.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module/Hashtags.php')
-rw-r--r--Zotlabs/Module/Hashtags.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/Zotlabs/Module/Hashtags.php b/Zotlabs/Module/Hashtags.php
index d87a82818..edb631871 100644
--- a/Zotlabs/Module/Hashtags.php
+++ b/Zotlabs/Module/Hashtags.php
@@ -8,8 +8,6 @@ class Hashtags extends \Zotlabs\Web\Controller {
function init() {
$result = [];
- logger(print_r($_REQUEST,true));
-
$t = escape_tags($_REQUEST['t']);
if(! $t)
json_return_and_die($result);
@@ -23,7 +21,7 @@ class Hashtags extends \Zotlabs\Web\Controller {
$result[] = [ 'text' => strtolower($rv['term']) ];
}
}
- logger(print_r($result,true));
+
json_return_and_die($result);
}
} \ No newline at end of file