summaryrefslogtreecommitdiff
path: root/lib/exe/ajax.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/exe/ajax.php')
-rw-r--r--lib/exe/ajax.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/exe/ajax.php b/lib/exe/ajax.php
index fdc28d4f1..9769503a7 100644
--- a/lib/exe/ajax.php
+++ b/lib/exe/ajax.php
@@ -45,6 +45,8 @@ function ajax_qsearch(){
global $lang;
global $INPUT;
+ $maxnumbersuggestions = 50;
+
$query = $INPUT->post->str('q');
if(empty($query)) $query = $INPUT->get->str('q');
if(empty($query)) return;
@@ -72,7 +74,7 @@ function ajax_qsearch(){
echo '<li>' . html_wikilink(':'.$id,$name) . '</li>';
$counter ++;
- if($counter > 50) {
+ if($counter > $maxnumbersuggestions) {
echo '<li>...</li>';
break;
}