In features_admin_form() some markup is actually injected into the description to add information on conflicts, dependencies and requirements, however the description is later being outputted using check_plain() which escapes the markup and just looks weird. Simple patch on its way.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

alexweber’s picture

Status: Active » Needs review
FileSize
1004 bytes

Since the information comes from a module's .info file its safe to avoid running check_plain() on it IMO.

alexweber’s picture

After looking at the 2.x branch I realised I had missed two more unneeded check_plains() in the string substitutions from l()

hefox’s picture

Issue summary: View changes

Is this 1.x only?