ErrorException [ Deprecated ]: Function get_magic_quotes_gpc() is deprecated

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

283 			// Set the index file
284 			Kohana::$index_file = trim($settings['index_file'], '/');
285 		}
286 
287 		// Determine if the extremely evil magic quotes are enabled
288 		Kohana::$magic_quotes = (bool) get_magic_quotes_gpc();
289 
290 		// Sanitize all request variables
291 		$_GET    = Kohana::sanitize($_GET);
292 		$_POST   = Kohana::sanitize($_POST);
293 		$_COOKIE = Kohana::sanitize($_COOKIE);
  1. SYSPATH/classes/kohana/core.php [ 288 ] » Kohana_Core::error_handler()

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

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

Environment