diff options
author | Friendika <info@friendika.com> | 2011-09-25 22:14:40 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-25 22:14:40 -0700 |
commit | 20d4fda22f26a99e7da930be639874f80ae7060d (patch) | |
tree | d7316e23c8d846e41e232fe6e5e5db025d8548fc /mod/group.php | |
parent | c35342dcb6498fa16b3367f524e603806b1e7aa4 (diff) | |
parent | c05178c10529abd402bc48bdc9bd97aaccdebfa6 (diff) | |
download | volse-hubzilla-20d4fda22f26a99e7da930be639874f80ae7060d.tar.gz volse-hubzilla-20d4fda22f26a99e7da930be639874f80ae7060d.tar.bz2 volse-hubzilla-20d4fda22f26a99e7da930be639874f80ae7060d.zip |
Merge branch 'pull'
Diffstat (limited to 'mod/group.php')
-rw-r--r-- | mod/group.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/group.php b/mod/group.php index 981796f67..ca163902c 100644 --- a/mod/group.php +++ b/mod/group.php @@ -176,8 +176,8 @@ function group_content(&$a) { if($change) $o = ''; - $o .= '<div id="group-members">'; $o .= '<h3>' . t('Members') . '</h3>'; + $o .= '<div id="group-members">'; $textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false); foreach($members as $member) { if($member['url']) { @@ -190,9 +190,10 @@ function group_content(&$a) { $o .= '</div><div id="group-members-end"></div>'; $o .= '<hr id="group-separator" />'; + + $o .= '<h3>' . t('All Contacts') . '</h3>'; $o .= '<div id="group-all-contacts">'; - $o .= '<h3>' . t('All Contacts') . '</h3>'; $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 ORDER BY `name` ASC", intval(local_user()) ); |