aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-14 20:55:05 -0800
committerfriendica <info@friendica.com>2012-11-14 20:55:05 -0800
commit160258fd5deeca6fdee659a8d3471cfbff6a9325 (patch)
tree30f6849729e8eeacfda0f9d85eb641bb88ca2055 /include/group.php
parent71dc132f42a7b9fc31aa350a3e56405c06addcae (diff)
downloadvolse-hubzilla-160258fd5deeca6fdee659a8d3471cfbff6a9325.tar.gz
volse-hubzilla-160258fd5deeca6fdee659a8d3471cfbff6a9325.tar.bz2
volse-hubzilla-160258fd5deeca6fdee659a8d3471cfbff6a9325.zip
make the visual group editor work again in the new world
Diffstat (limited to 'include/group.php')
-rw-r--r--include/group.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/group.php b/include/group.php
index c91365896..dda432266 100644
--- a/include/group.php
+++ b/include/group.php
@@ -146,7 +146,7 @@ function group_add_member($uid,$name,$member,$gid = 0) {
// -- It was just created at another time
if(! count($r))
$r = q("INSERT INTO `group_member` (`uid`, `gid`, `xchan`)
- VALUES( %d, %d, %d ) ",
+ VALUES( %d, %d, '%s' ) ",
intval($uid),
intval($gid),
dbesc($member)
@@ -157,11 +157,13 @@ function group_add_member($uid,$name,$member,$gid = 0) {
function group_get_members($gid) {
$ret = array();
if(intval($gid)) {
- $r = q("SELECT abook.*,xchan.* FROM `group_member`
+ $r = q("SELECT abook.*,xchan.*,group_member.* 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 ORDER BY xchan_name ASC ",
+ WHERE `gid` = %d AND `group_member`.`uid` = %d and not ( abook_flags & %d) and not (abook_flags & %d) ORDER BY xchan_name ASC ",
intval($gid),
- intval(local_user())
+ intval(local_user()),
+ intval(ABOOK_FLAG_SELF),
+ intval(ABOOK_FLAG_BLOCKED)
);
if(count($r))
$ret = $r;