aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-11-21 17:23:14 -0800
committerfriendica <info@friendica.com>2013-11-21 17:23:14 -0800
commit3e0ac769aad2ae15934c32eef2f4992bde73e178 (patch)
tree1b08f1cc0a06962e10896e1a71ea504ecaddefa2 /include/group.php
parentbe8a7e2de6326ea9fb16bebbafeaeaf6fa52a767 (diff)
downloadvolse-hubzilla-3e0ac769aad2ae15934c32eef2f4992bde73e178.tar.gz
volse-hubzilla-3e0ac769aad2ae15934c32eef2f4992bde73e178.tar.bz2
volse-hubzilla-3e0ac769aad2ae15934c32eef2f4992bde73e178.zip
white screen
Diffstat (limited to 'include/group.php')
-rw-r--r--include/group.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/group.php b/include/group.php
index eece07983..d339301b4 100644
--- a/include/group.php
+++ b/include/group.php
@@ -202,7 +202,7 @@ function group_get_members($gid) {
return $ret;
}
-function mini_group_select($uid,$gid = 0) {
+function mini_group_select($uid,$group = '') {
$grps = array();
$o = '';
@@ -210,10 +210,10 @@ function mini_group_select($uid,$gid = 0) {
$r = q("SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d ORDER BY `name` ASC",
intval($uid)
);
- $grps[] = array('name' => '', 'id' => '0', 'selected' => '');
+ $grps[] = array('name' => '', 'hash' => '0', 'selected' => '');
if(count($r)) {
foreach($r as $rr) {
- $grps[] = array('name' => $rr['name'], 'id' => $rr['id'], 'selected' => (($gid == $rr['id']) ? 'true' : ''));
+ $grps[] = array('name' => $rr['name'], 'id' => $rr['hash'], 'selected' => (($group == $rr['hash']) ? 'true' : ''));
}
}