Quote Originally Posted by zeffer
Found a small bug. In group, once you create a group and need to edit the group, the groups name is a href and makes the whole page clickable. Example you try to click in an input and it clicks the href link automatically.
yup reported that one back in may with the rest of the group bugs....its easy to fix though...just a missing </A>... just open my_group_edit.tpl and find

Code:
<DIV class=tableSubTitle>Edit Group: <A href="{$baseurl}/group/{$smarty.request.urlkey}/">
{$smarty.request.urlkey}</DIV>
replace with

Code:
<DIV class=tableSubTitle>Edit Group: <A href="{$baseurl}/group/{$smarty.request.urlkey}/">
{$smarty.request.urlkey}</A></DIV>