diff options
author | friendica <info@friendica.com> | 2013-01-22 20:13:20 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-22 20:13:20 -0800 |
commit | d43591fb0f5c552b1c725dc2cbaeaea8fe441319 (patch) | |
tree | 0111d8cc29b3e2af07501c65b025e66f0b2a37cc /mod/contactgroup.php | |
parent | c09fad42ea997ad3e1b669f7ddcf07cccb7078d1 (diff) | |
download | volse-hubzilla-d43591fb0f5c552b1c725dc2cbaeaea8fe441319.tar.gz volse-hubzilla-d43591fb0f5c552b1c725dc2cbaeaea8fe441319.tar.bz2 volse-hubzilla-d43591fb0f5c552b1c725dc2cbaeaea8fe441319.zip |
fixed contactgroup editor
Diffstat (limited to 'mod/contactgroup.php')
-rw-r--r-- | mod/contactgroup.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/mod/contactgroup.php b/mod/contactgroup.php index bf81afe07..4b46605a6 100644 --- a/mod/contactgroup.php +++ b/mod/contactgroup.php @@ -4,27 +4,27 @@ require_once('include/group.php'); function contactgroup_content(&$a) { - if(! local_user()) { killme(); } - if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) { - $r = q("SELECT `id` FROM `contact` WHERE `id` = %d AND `uid` = %d and `self` = 0 and `blocked` = 0 AND `pending` = 0 LIMIT 1", - intval($a->argv[2]), - intval(local_user()) + if((argc() > 2) && (intval(argv(1))) && (argv(2))) { + $r = q("SELECT abook_xchan from abook where abook_xchan = '%s' and abook_channel = %d and not ( abook_flags & %d ) limit 1", + dbesc(argv(2)), + intval(local_user()), + intval(ABOOK_FLAG_SELF) ); - if(count($r)) - $change = intval($a->argv[2]); + if($r) + $change = $r[0]['abook_xchan']; } - if(($a->argc > 1) && (intval($a->argv[1]))) { + if((argc() > 1) && (intval(argv(1)))) { $r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1", - intval($a->argv[1]), + intval(argv(1)), intval(local_user()) ); - if(! count($r)) { + if(! $r) { killme(); } @@ -33,7 +33,7 @@ function contactgroup_content(&$a) { $preselected = array(); if(count($members)) { foreach($members as $member) - $preselected[] = $member['id']; + $preselected[] = $member['xchan_hash']; } if($change) { |