mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
qsearch_limit, not lsearch
This commit is contained in:
parent
80ed4242ee
commit
2d4b3bee60
1 changed files with 1 additions and 1 deletions
|
@ -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']))) : '');
|
||||
|
||||
|
|
Loading…
Reference in a new issue