diff options
author | friendica <info@friendica.com> | 2015-01-08 16:03:30 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-08 16:03:30 -0800 |
commit | fab09ef1bc7ebd74055f62350e7012dec09c817b (patch) | |
tree | 51ea03d8bf877a8eee3ccdeaf8c9ac441d2a3f09 /mod/acl.php | |
parent | 0657195125675700eeb9bcd1bc92f4299cac0304 (diff) | |
parent | 836223bf5b60a8b0db27dac9e5c183c77fa6a2e1 (diff) | |
download | volse-hubzilla-fab09ef1bc7ebd74055f62350e7012dec09c817b.tar.gz volse-hubzilla-fab09ef1bc7ebd74055f62350e7012dec09c817b.tar.bz2 volse-hubzilla-fab09ef1bc7ebd74055f62350e7012dec09c817b.zip |
Merge branch 'master' into trinidad
Diffstat (limited to 'mod/acl.php')
-rw-r--r-- | mod/acl.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/acl.php b/mod/acl.php index f575db55b..d406942c3 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -293,9 +293,10 @@ function navbar_complete(&$a) { $url = $directory['url'] . '/dirsearch'; } + $count = (x($_REQUEST,'count')?$_REQUEST['count']:100); if($url) { $query = $url . '?f=' ; - $query .= '&name=' . urlencode($search) . '&limit=50' . (($address) ? '&address=' . urlencode($search) : ''); + $query .= '&name=' . urlencode($search) . "&limit=$count" . (($address) ? '&address=' . urlencode($search) : ''); $x = z_fetch_url($query); if($x['success']) { |