Guest User

Untitled

a guest
Mar 13th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. Old: $new_settings['emailtemplates'][$tpl]  = addslashes(mga_stripslashes_deep($settings['emailtemplates'][$tpl]));
  2.  
  3. New:
  4.  
  5. $allowedtags = array('href' => array(),
  6.             'title' => array()),
  7.             'br' => array(),
  8.             'em' => array(),
  9.             'strong' => array());
  10.  
  11. $new_settings['emailtemplates'][$tpl]  = wp_kses($settings['emailtemplates'][$tpl],$allowedtags));
Add Comment
Please, Sign In to add comment