aboutsummaryrefslogtreecommitdiffstats
path: root/mod/group.php
diff options
context:
space:
mode:
authorroot <root@diekershoff.homeunix.net>2011-01-03 09:27:13 +0100
committerroot <root@diekershoff.homeunix.net>2011-01-03 09:27:13 +0100
commitf3005918aff04fc435d0f526bf235bd95468294c (patch)
treef334d76dbd89093d8448e13e62f8b094159e576c /mod/group.php
parent0b4a6f8eaca0d1396e7e944cd4735a573bd1d111 (diff)
parentd92659560b8edd0594b587103b43ad5bd5012639 (diff)
downloadvolse-hubzilla-f3005918aff04fc435d0f526bf235bd95468294c.tar.gz
volse-hubzilla-f3005918aff04fc435d0f526bf235bd95468294c.tar.bz2
volse-hubzilla-f3005918aff04fc435d0f526bf235bd95468294c.zip
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/group.php')
-rw-r--r--mod/group.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/group.php b/mod/group.php
index 01875d01f..fcdc6a758 100644
--- a/mod/group.php
+++ b/mod/group.php
@@ -56,13 +56,14 @@ function group_post(&$a) {
notice( t('Group name changed.') . EOL );
}
$members = $_POST['group_members_select'];
- array_walk($members,'validate_members');
+ if(is_array($members))
+ array_walk($members,'validate_members');
$r = q("DELETE FROM `group_member` WHERE `gid` = %d AND `uid` = %d",
intval($a->argv[1]),
intval(local_user())
);
$result = true;
- if(count($members)) {
+ if(is_array($members) && count($members)) {
foreach($members as $member) {
$r = q("INSERT INTO `group_member` ( `uid`, `gid`, `contact-id`)
VALUES ( %d, %d, %d )",