aboutsummaryrefslogtreecommitdiffstats
path: root/mod/qsearch.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-02 20:42:09 -0700
committerFriendika <info@friendika.com>2011-06-02 20:42:09 -0700
commit20d1de4ceda3390f65adb9b9915dc9f36eeb3ed4 (patch)
treee9fa5c2a02f7860916931dc723af4dba76852c8c /mod/qsearch.php
parent1eb177235bafe63bd021e86a963b5d78f9bd0cd1 (diff)
downloadvolse-hubzilla-20d1de4ceda3390f65adb9b9915dc9f36eeb3ed4.tar.gz
volse-hubzilla-20d1de4ceda3390f65adb9b9915dc9f36eeb3ed4.tar.bz2
volse-hubzilla-20d1de4ceda3390f65adb9b9915dc9f36eeb3ed4.zip
got it wrong - apparently no need to fix json slashes
Diffstat (limited to 'mod/qsearch.php')
-rw-r--r--mod/qsearch.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/qsearch.php b/mod/qsearch.php
index 9b3f2b087..c35e253b6 100644
--- a/mod/qsearch.php
+++ b/mod/qsearch.php
@@ -44,7 +44,7 @@ function qsearch_init(&$a) {
$results[] = array( (int) $rr['id'], 0, $rr['name'],$rr['url'],$rr['photo']);
}
- echo str_replace('\\/','/',json_encode((object) $results));
+ echo json_encode((object) $results);
killme();
}