summaryrefslogtreecommitdiffstats
path: root/code/util.inc.php
blob: b2cf954a8097cb381554b4f54c5dc6573a69758f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?PHP
  if(get_magic_quotes_gpc()) {
    function Unquote($string) {
      return stripslashes($string);
    }
  }
  else {
    function Unquote($string) {
      return $string;
    }
  }
?>