aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-10 21:06:35 -0700
committerFriendika <info@friendika.com>2011-08-10 21:06:35 -0700
commit684ebd2ed8a2b225860b59256bf81146b1867d6a (patch)
tree5730a0213ccfd7bb19806d22222a955ff1d650ec /include/group.php
parent06408664db04cd1cac255d21e7bab54e6ba0c047 (diff)
downloadvolse-hubzilla-684ebd2ed8a2b225860b59256bf81146b1867d6a.tar.gz
volse-hubzilla-684ebd2ed8a2b225860b59256bf81146b1867d6a.tar.bz2
volse-hubzilla-684ebd2ed8a2b225860b59256bf81146b1867d6a.zip
enhance random_string, block public email replies
Diffstat (limited to 'include/group.php')
-rw-r--r--include/group.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/group.php b/include/group.php
index 8ee7face6..1ebae7b7b 100644
--- a/include/group.php
+++ b/include/group.php
@@ -170,7 +170,7 @@ EOT;
$o .= ' <li class="sidebar-group-li">'
. (($edit) ? "<a href=\"group/{$rr['id']}\" title=\"" . t('Edit')
. "\" ><img src=\"images/spencil.gif\" alt=\"" . t('Edit') . "\"></a> " : "")
- . (($cid) ? '<input type="checkbox" onclick="contactgroupChangeMember(' . $rr['id'] . ',' . $cid . ');return true;" '
+ . (($cid) ? '<input type="checkbox" class="' . (($selected) ? 'ticked' : 'unticked') . '" onclick="contactgroupChangeMember(' . $rr['id'] . ',' . $cid . ');return true;" '
. ((in_array($rr['id'],$member_of)) ? ' checked="checked" ' : '') . '/>' : '')
. "<a href=\"$each/{$rr['id']}\" $selected >{$rr['name']}</a></li>\r\n";
}