input.inc.php 164 B

12345
  1. function image($field, $value) {
  2. $value = remove_xss(str_replace(array("'",'"','(',')'),'',$value));
  3. $value = safe_replace($value);
  4. return trim($value);
  5. }