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

gooddesignusa’s picture

thanks 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

nancydru’s picture

Status: Active » Closed (duplicate)

As best I can tell this was fixed in #597632: tidyup fieldset patch.