Closed (fixed)
Project:
Taxonomy Delegate
Version:
6.x-1.x-dev
Component:
User interface
Priority:
Minor
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
18 Dec 2008 at 14:07 UTC
Updated:
24 Feb 2009 at 22:50 UTC
Jump to comment: Most recent file
Comments
Comment #1
leszek.hanusz commentedI found the problem, the line 373 of taxonomy_delegate.module should be:
drupal_set_title(t('Terms for %vocab', array('%vocab' => check_plain($vocabulary->name))));Comment #2
dboulet commentedWhen using the
%variableplaceholder, the replacement string is automatically sent throughcheck_plain(), so the line could simply be:Comment #3
dboulet commentedFinally got around to creating a patch for this.
Comment #4
nancydruOops, I had already noticed it and fixed it. Thanks for the patch.