aboutsummaryrefslogtreecommitdiffstats
path: root/mod/group.php
diff options
context:
space:
mode:
authorDevlon Duthie <duthied@gmail.com>2011-09-25 14:08:08 -0500
committerDevlon Duthie <duthied@gmail.com>2011-09-25 14:08:08 -0500
commitbbaec4cb780d32484980656fc2f81946dc0ea942 (patch)
tree38faff3177a88bb17fb642b4f1d0c8d15b00a4b8 /mod/group.php
parent3426ce5f94b660d417b29fc2767b3c6487df8a4c (diff)
downloadvolse-hubzilla-bbaec4cb780d32484980656fc2f81946dc0ea942.tar.gz
volse-hubzilla-bbaec4cb780d32484980656fc2f81946dc0ea942.tar.bz2
volse-hubzilla-bbaec4cb780d32484980656fc2f81946dc0ea942.zip
moved contact group header out of scrolling div so it doens't vanish whenlot
more css tweaks
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 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())
);