You have a typo in the first form element on the admin page:

   $form['htmlpurifier_introduction'] = array(
    '#markup' => t('<p>This page contains global settings for all HTML Purifier enabled filters.  If you are looking for specific filter configuration options, check <a href="@format">the format configurations page</a> and select the specific format you would like to configure.</p>', array('@filter' => url('admin/config/content/formats'))),
  );

You use the @format replacement variable in your translatable string, but you use @filter in the array of replacements, hence the replacement is not executed...

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

heddn’s picture

Can you write the solution up in a patch? https://drupal.org/node/707484

Konstantin Komelin’s picture

Version: 7.x-1.0 » 7.x-1.x-dev
Status: Active » Needs review
FileSize
1.02 KB

Hey there,

Patch attached. Please review.

Thanks,
Konstantin

Konstantin Komelin’s picture

Please use the same patch to fix the issue for 7.x-2.x branch.

heddn’s picture

Status: Needs review » Fixed

Commit 7f97586 on 7.x-1.x

Konstantin Komelin’s picture

Thanks @heddn for review!
Also, please consider possibility to apply this patch to 7.x-2.x because the same issue is occurring there.

heddn’s picture

I also applied it there, I just didn't supply the commit link.

Konstantin Komelin’s picture

Thanks a lot!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.