diff options
author | Friendika <info@friendika.com> | 2011-07-01 06:23:09 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-01 06:23:09 -0700 |
commit | f53a2d6da95e88573c4a8e36d40f1c9327490025 (patch) | |
tree | 398d95c363ba4b864acf55e2094b3a9f9f771f79 /mod | |
parent | b1aa77584f972b8c62fd099fa7fe08c36201b631 (diff) | |
download | volse-hubzilla-f53a2d6da95e88573c4a8e36d40f1c9327490025.tar.gz volse-hubzilla-f53a2d6da95e88573c4a8e36d40f1c9327490025.tar.bz2 volse-hubzilla-f53a2d6da95e88573c4a8e36d40f1c9327490025.zip |
add group highlight to other pages
Diffstat (limited to 'mod')
-rw-r--r-- | mod/group.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/group.php b/mod/group.php index fd54b0eff..981796f67 100644 --- a/mod/group.php +++ b/mod/group.php @@ -7,7 +7,7 @@ function validate_members(&$item) { function group_init(&$a) { if(local_user()) { require_once('include/group.php'); - $a->page['aside'] = group_side(); + $a->page['aside'] = group_side('contacts','group',false,(($a->argc > 1) ? intval($a->argv[1]) : 0)); } } |