Index: workflow.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/workflow/workflow.module,v retrieving revision 1.83 diff -u -r1.83 workflow.module --- workflow.module 1 Jan 2009 21:09:16 -0000 1.83 +++ workflow.module 14 Apr 2009 17:04:51 -0000 @@ -436,6 +436,7 @@ } $workflow = workflow_load($wid); $form['#wf'] = $workflow; + $name = check_plain($workflow->name); // If the current node state is not one of the choices, autoselect first choice. // We know all states in $choices are states that user has permission to @@ -448,7 +449,7 @@ if (sizeof($choices) > 1) { $form['workflow'] = array( '#type' => 'fieldset', - '#title' => check_plain($workflow->name), + '#title' => $name, '#collapsible' => TRUE, '#collapsed' => FALSE, '#weight' => 10,