[svn r20207] Minor - updated phpdoc

skala
Yannick Warnier 16 years ago
parent 5c5313acb5
commit 54e8f72bf9
  1. 8
      main/inc/lib/security.lib.php

@ -242,11 +242,10 @@ class Security{
}
/**
* This function tackles the XSS injections.
*
* Filtering for XSS is very easily done by using the htmlentities() function.
* This kind of filtering prevents JavaScript snippets to be understood as such.
* @param string The variable to filter for XSS,this params can be an array (example : array(x,y))
* @return string Filtered string
* @param mixed The variable to filter for XSS, this params can be a string or an array (example : array(x,y))
* @return mixed Filtered string or array
*/
function remove_XSS($var) {
global $charset;
@ -264,5 +263,4 @@ class Security{
return htmlentities($var,ENT_QUOTES,$charset);
}
}
}
?>
}
Loading…
Cancel
Save