changed
t('Allowed HTML tags') .': '. check_plain($allowed_html)
to

t('Allowed HTML tags : %tags', array('%tags' => $allowed_html))

in order to comply with t() function usage rules (http://api.drupal.org/api/function/t/5).

Comments

dries’s picture

% will put the tags in italic. Using @ won't.

Also, there should only be a space after the :, not before.

ricflomag’s picture

StatusFileSize
new868 bytes

Thanks. Patch updated.

ricflomag’s picture

StatusFileSize
new868 bytes

Please disregard the previous file, take this one.

drumm’s picture

Version: 5.2 » 6.x-dev
Status: Needs review » Reviewed & tested by the community

Committed to 5.x.

Applies with offset to HEAD.

dries’s picture

Status: Reviewed & tested by the community » Fixed

Thanks for the prompt corrections ricflomag. Committed to CVS HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)