Esempio n. 1
0
 /**
  * Fix for the magic_quotes_gpc. See http://bugs.typo3.org/view.php?id=18133
  *
  * @param mixed $array
  * @return void
  */
 protected function decodeSpURL_fixMagicQuotes(&$array)
 {
     if (get_magic_quotes_gpc() && is_array($array)) {
         $this->apiWrapper->stripSlashesOnArray($array);
     }
 }