aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Hashtags.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-03-07 17:29:01 -0800
committerzotlabs <mike@macgirvin.com>2018-03-07 17:29:01 -0800
commit1700aedbed9050ca2eee621c04c29e5b34150bc5 (patch)
tree71cd398cd1e3ca94ea2f83832434f38080ffe505 /Zotlabs/Module/Hashtags.php
parent48b1042347d098672e583010fe9dbf71eb81623c (diff)
downloadvolse-hubzilla-1700aedbed9050ca2eee621c04c29e5b34150bc5.tar.gz
volse-hubzilla-1700aedbed9050ca2eee621c04c29e5b34150bc5.tar.bz2
volse-hubzilla-1700aedbed9050ca2eee621c04c29e5b34150bc5.zip
remove extraneous logging
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