ErrorException [ Deprecated ]: Function get_magic_quotes_gpc() is deprecated

SYSPATH/classes/kohana/core.php [ 330 ]

325 			// Set the index file
326 			Kohana::$index_file = trim($settings['index_file'], '/');
327 		}
328 
329 		// Determine if the extremely evil magic quotes are enabled
330 		Kohana::$magic_quotes = (bool) get_magic_quotes_gpc();
331 
332 		// Sanitize all request variables
333 		$_GET    = Kohana::sanitize($_GET);
334 		$_POST   = Kohana::sanitize($_POST);
335 		$_COOKIE = Kohana::sanitize($_COOKIE);
  1. SYSPATH/classes/kohana/core.php [ 330 ] » Kohana_Core::error_handler()

  2. APPPATH/bootstrap.php [ 53 ] » Kohana_Core::init()

  3. DOCROOT/index.php [ 103 ] » require(arguments)

Environment