Call to undefined function get_magic_quotes_gpc()
/arriva/framework/pradolite.php (2307)
2296: if(isset($_SERVER['REQUEST_URI']))
2297: $this->_requestUri=$_SERVER['REQUEST_URI'];
2298: else $this->_requestUri=$_SERVER['SCRIPT_NAME'].(empty($_SERVER['QUERY_STRING'])?'':'?'.$_SERVER['QUERY_STRING']);
2299: if($this->_cgiFix&self::CGIFIX__PATH_INFO && isset($_SERVER['ORIG_PATH_INFO']))
2300: $this->_pathInfo=substr($_SERVER['ORIG_PATH_INFO'], strlen($_SERVER['SCRIPT_NAME']));
2301: elseif(isset($_SERVER['PATH_INFO']))
2302: $this->_pathInfo=$_SERVER['PATH_INFO'];
2303: else if(strpos($_SERVER['PHP_SELF'],$_SERVER['SCRIPT_NAME'])===0 && $_SERVER['PHP_SELF']!==$_SERVER['SCRIPT_NAME'])
2304: $this->_pathInfo=substr($_SERVER['PHP_SELF'],strlen($_SERVER['SCRIPT_NAME']));
2305: else
2306: $this->_pathInfo='';
2307: if(get_magic_quotes_gpc())
2308: {
2309: if(isset($_GET))
2310: $_GET=$this->stripSlashes($_GET);
2311: if(isset($_POST))
2312: $_POST=$this->stripSlashes($_POST);
2313: if(isset($_REQUEST))
2314: $_REQUEST=$this->stripSlashes($_REQUEST);
2315: if(isset($_COOKIE))
2316: $_COOKIE=$this->stripSlashes($_COOKIE);
2317: }
2318: $this->getApplication()->setRequest($this);
2319: }
#0 /arriva/framework/pradolite.php(9005): THttpRequest->init()
#1 /arriva/framework/pradolite.php(9198): TApplication->getRequest()
#2 /arriva/framework/pradolite.php(8860): TApplication->initApplication()
#3 /arriva/index.php(12): TApplication->run()
#4 {main}