Closed (duplicate)
Project:
Util
Version:
6.x-3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Nov 2009 at 16:48 UTC
Updated:
29 Dec 2009 at 15:34 UTC
On the permissions page in FF 3.5 (didn't check anything else) the titles of the collapsible fieldsets for modules appear with the <a tags as text. Can be fixed by replacing the fieldset definition at line 126 with:
$fieldset_form[$fieldset_module_watcher] = array(
'#type' => 'fieldset',
'#title' => t('@module module', array('@module' => $fieldset_module_watcher)),
'#collapsible' => TRUE,
'#collapsed' => $collapsed,
'#weight' => ++$fieldset_weight,
'#prefix' => '<a name="module-' . $fieldset_module_watcher . '">',
'#suffix' => '</a>'
);
Cheers
Alex
Comments
Comment #1
gooddesignusa commentedthanks a lot that worked for me. But it added a weird space. Removing
,
'#prefix' => '',
'#suffix' => ''
fixed it for me. Not sure why thats needed. Thanks again though
Comment #2
nancydruAs best I can tell this was fixed in #597632: tidyup fieldset patch.