aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-28 23:39:59 -0800
committerFriendika <info@friendika.com>2011-02-28 23:39:59 -0800
commit2d4b3bee609e2d5aa9a421e6e9e9283b49f225db (patch)
treef54e9eecd4c197ce6436ff003160328e54b90925
parent80ed4242ee71031f73aa4ef32f17edbf6e989f51 (diff)
downloadvolse-hubzilla-2d4b3bee609e2d5aa9a421e6e9e9283b49f225db.tar.gz
volse-hubzilla-2d4b3bee609e2d5aa9a421e6e9e9283b49f225db.tar.bz2
volse-hubzilla-2d4b3bee609e2d5aa9a421e6e9e9283b49f225db.zip
qsearch_limit, not lsearch
-rw-r--r--mod/qsearch.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/qsearch.php b/mod/qsearch.php
index 3bde48870..9b3f2b087 100644
--- a/mod/qsearch.php
+++ b/mod/qsearch.php
@@ -5,7 +5,7 @@ function qsearch_init(&$a) {
if(! local_user())
killme();
- $limit = (get_config('system','lsearch_limit') ? intval(get_config('system','lsearch_limit')) : 100);
+ $limit = (get_config('system','qsearch_limit') ? intval(get_config('system','qsearch_limit')) : 100);
$search = ((x($_GET,'s')) ? notags(trim(urldecode($_GET['s']))) : '');