Line 194: Potential problem: drupal_set_message() only accepts filtered text, be sure to use check_plain(), filter_xss() or similar to ensure your $variable is fully sanitized. (Drupal Docs) [security_dsm]

drupal_set_message($message, 'status');

Line 241: Potential problem: drupal_set_message() only accepts filtered text, be sure to use check_plain(), filter_xss() or similar to ensure your $variable is fully sanitized. (Drupal Docs) [security_dsm]

drupal_set_message($message, 'status');

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Munavijayalakshmi created an issue. See original summary.

Munavijayalakshmi’s picture

Status: Active » Needs review
FileSize
866 bytes
dstol’s picture

Status: Needs review » Closed (works as designed)

If you take a look at the comments prior to the drupal_set_message() call you'll see that $message is already sanitized.