diff options
author | Michael <icarus@dabo.de> | 2012-04-11 18:47:21 +0200 |
---|---|---|
committer | Michael <icarus@dabo.de> | 2012-04-11 18:47:21 +0200 |
commit | c3139fa0fd49b0b4de4568d46a6946c75ccb2a62 (patch) | |
tree | a46d809d2e11fefba938717d38b1371572e4d815 /mod/acl.php | |
parent | 81a8d4f9dbd32de133e647c87a5394dd52f009fe (diff) | |
parent | fe257a20324fe68838e5829e19d18777045a41b4 (diff) | |
download | volse-hubzilla-c3139fa0fd49b0b4de4568d46a6946c75ccb2a62.tar.gz volse-hubzilla-c3139fa0fd49b0b4de4568d46a6946c75ccb2a62.tar.bz2 volse-hubzilla-c3139fa0fd49b0b4de4568d46a6946c75ccb2a62.zip |
Merge branch 'master' of github.com:annando/friendica
Diffstat (limited to 'mod/acl.php')
-rw-r--r--[-rwxr-xr-x] | mod/acl.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/acl.php b/mod/acl.php index 375c618c8..fe353d1eb 100755..100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -7,10 +7,10 @@ function acl_init(&$a){ return ""; - $start = (x($_POST,'start')?$_POST['start']:0); - $count = (x($_POST,'count')?$_POST['count']:100); - $search = (x($_POST,'search')?$_POST['search']:""); - $type = (x($_POST,'type')?$_POST['type']:""); + $start = (x($_REQUEST,'start')?$_REQUEST['start']:0); + $count = (x($_REQUEST,'count')?$_REQUEST['count']:100); + $search = (x($_REQUEST,'search')?$_REQUEST['search']:""); + $type = (x($_REQUEST,'type')?$_REQUEST['type']:""); if ($search!=""){ @@ -34,7 +34,7 @@ function acl_init(&$a){ $r = q("SELECT COUNT(`id`) AS c FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 - AND `notify` != '' $sql_extra" , + AND `notify` != '' $sql_extra2" , intval(local_user()) ); $contact_count = (int)$r[0]['c']; |