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 | |
parent | c09fad42ea997ad3e1b669f7ddcf07cccb7078d1 (diff) | |
download | volse-hubzilla-d43591fb0f5c552b1c725dc2cbaeaea8fe441319.tar.gz volse-hubzilla-d43591fb0f5c552b1c725dc2cbaeaea8fe441319.tar.bz2 volse-hubzilla-d43591fb0f5c552b1c725dc2cbaeaea8fe441319.zip |
fixed contactgroup editor
-rw-r--r-- | done | 12 | ||||
-rw-r--r-- | include/group.php | 3 | ||||
-rw-r--r-- | mod/connections.php | 2 | ||||
-rw-r--r-- | mod/contactgroup.php | 22 |
4 files changed, 19 insertions, 20 deletions
@@ -87,14 +87,14 @@ mod/ - cb.php common.php community.php - contactgroup.php ++ contactgroup.php crepair.php delegate.php - directory.php +? directory.php dirfind.php display.php editpost.php - events.php +? events.php fbrowser.php feed.php filerm.php @@ -114,7 +114,7 @@ mod/ + lockview.php + login.php lostpass.php - magic.php +? magic.php + manage.php match.php ? message.php @@ -164,8 +164,8 @@ mod/ viewcontacts.php view.php + viewsrc.php -? wall_attach.php (needs remote permissions refactor) -? wall_upload.php (needs remote permissions refactor) ++ wall_attach.php (needs remote permissions refactor) ++ wall_upload.php (needs remote permissions refactor) webfinger.php + _well_known.php xrd.php diff --git a/include/group.php b/include/group.php index 6568af0c7..3a2fe7a3c 100644 --- a/include/group.php +++ b/include/group.php @@ -169,7 +169,7 @@ function group_add_member($uid,$name,$member,$gid = 0) { function group_get_members($gid) { $ret = array(); if(intval($gid)) { - $r = q("SELECT abook.*,xchan.*,group_member.* FROM `group_member` + $r = q("SELECT * FROM `group_member` LEFT JOIN abook ON abook_xchan = `group_member`.`xchan` left join xchan on xchan_hash = abook_xchan WHERE `gid` = %d AND `group_member`.`uid` = %d and not ( abook_flags & %d ) and not ( abook_flags & %d ) and not ( abook_flags & %d ) ORDER BY xchan_name ASC ", intval($gid), @@ -228,7 +228,6 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0 ); - $r = q("SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d ORDER BY `name` ASC", intval($_SESSION['uid']) ); diff --git a/mod/connections.php b/mod/connections.php index a12f51e68..0a2edb4cd 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -34,7 +34,7 @@ function connections_aside(&$a) { $a->set_widget('follow', follow_widget()); } - $a->set_widget('collections', group_side('connnections','group',false,0,((array_key_exists('abook',$a->data)) ? $a->data['abook']['abook_id'] : ''))); + $a->set_widget('collections', group_side('connnections','group',false,0,((array_key_exists('abook',$a->data)) ? $a->data['abook']['abook_xchan'] : ''))); $a->set_widget('findpeople',findpeople_widget()); } 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) { |