Closed (fixed)
Project:
FitVids
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Dec 2011 at 14:17 UTC
Updated:
16 Mar 2012 at 17:41 UTC
In the install file, you create messages containing a clickable url:
Example:
46 $message = t('You already have the FitVids.js jQuery plugin installed. Configure the module !fitvids-configuration', array(
47 '!fitvids-configuration' => l(t('here'), 'admin/config/media/fitvids'),
48 ));After generating the message with the clickable url, you run it through check_plain? I think thats an error?
49 drupal_set_message(check_plain($message));
Comments
Comment #1
derekahmedzai commentedThanks, will fix that.
Comment #2
moloc commentedAs reading the issue again, i think instead of removing the check_plain check, a better solution may be to use filter_xss_admin?
Comment #3
derekahmedzai commentedAm using
filter_xss_adminin the latest release.