diff options
author | Friendika <info@friendika.com> | 2011-11-10 19:53:13 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-11-10 19:53:13 -0800 |
commit | 02f21fb74c954a4b3ba356c72fe28d62ce52039a (patch) | |
tree | 57e56a6c44edc388099524708586f5bc17f082b6 /include | |
parent | 199da623ff8895e7aaec27599abb09dadd110d47 (diff) | |
download | volse-hubzilla-02f21fb74c954a4b3ba356c72fe28d62ce52039a.tar.gz volse-hubzilla-02f21fb74c954a4b3ba356c72fe28d62ce52039a.tar.bz2 volse-hubzilla-02f21fb74c954a4b3ba356c72fe28d62ce52039a.zip |
some testbubble fixes
Diffstat (limited to 'include')
-rw-r--r-- | include/group.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/group.php b/include/group.php index e3c7d33d4..084cddcac 100644 --- a/include/group.php +++ b/include/group.php @@ -188,7 +188,7 @@ EOT; $selected = (($group_id == $rr['id']) ? ' group-selected' : ''); $o .= ' <li class="sidebar-group-li">' . (($edit) ? "<a href=\"group/{$rr['id']}\" title=\"" . t('Edit') - . "\" class=\"groupsideedit\" ><img src=\"images/spencil.gif\" alt=\"" . t('Edit') . "\"></a> " : "") + . "\" class=\"groupsideedit\" ><span class=\"icon small-pencil\"></span></a> " : "") . (($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']}\" class=\"sidebar-group-element" . $selected ."\" >{$rr['name']}</a></li>\r\n"; |