Call to undefined function get_magic_quotes_gpc()
/home/marlext/public_html/framework/Web/THttpRequest.php (198)
0187: $this->_requestUri=$_SERVER['SCRIPT_NAME'].(empty($_SERVER['QUERY_STRING'])?'':'?'.$_SERVER['QUERY_STRING']);
0188:
0189: if($this->_cgiFix&self::CGIFIX__PATH_INFO && isset($_SERVER['ORIG_PATH_INFO']))
0190: $this->_pathInfo=substr($_SERVER['ORIG_PATH_INFO'], strlen($_SERVER['SCRIPT_NAME']));
0191: elseif(isset($_SERVER['PATH_INFO']))
0192: $this->_pathInfo=$_SERVER['PATH_INFO'];
0193: else if(strpos($_SERVER['PHP_SELF'],$_SERVER['SCRIPT_NAME'])===0 && $_SERVER['PHP_SELF']!==$_SERVER['SCRIPT_NAME'])
0194: $this->_pathInfo=substr($_SERVER['PHP_SELF'],strlen($_SERVER['SCRIPT_NAME']));
0195: else
0196: $this->_pathInfo='';
0197:
0198: if(get_magic_quotes_gpc())
0199: {
0200: if(isset($_GET))
0201: $_GET=$this->stripSlashes($_GET);
0202: if(isset($_POST))
0203: $_POST=$this->stripSlashes($_POST);
0204: if(isset($_REQUEST))
0205: $_REQUEST=$this->stripSlashes($_REQUEST);
0206: if(isset($_COOKIE))
0207: $_COOKIE=$this->stripSlashes($_COOKIE);
0208: }
0209:
0210: $this->getApplication()->setRequest($this);
#0 /home/marlext/public_html/framework/TApplication.php(651): THttpRequest->init(NULL)
#1 /home/marlext/public_html/framework/TApplicationComponent.php(58): TApplication->getRequest()
#2 /home/marlext/public_html/framework/Web/TUrlMapping.php(110): TApplicationComponent->getRequest()
#3 /home/marlext/public_html/framework/TApplication.php(909): TUrlMapping->init(Object(TXmlElement))
#4 /home/marlext/public_html/framework/TApplication.php(956): TApplication->applyConfiguration(Object(TApplicationConfiguration), false)
#5 /home/marlext/public_html/framework/TApplication.php(370): TApplication->initApplication()
#6 /home/marlext/public_html/index.php(29): TApplication->run()
#7 {main}