ErrorException [ 8192 ]: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead

SYSPATH/classes/kohana/url.php [ 108 ]

103 		$path = preg_replace('~^[-a-z0-9+.]++://[^/]++/?~', '', trim($uri, '/'));
104 
105 		if ( ! UTF8::is_ascii($path))
106 		{
107 			// Encode all non-ASCII characters, as per RFC 1738
108 			$path = preg_replace('~([^/]+)~e', 'rawurlencode("$1")', $path);
109 		}
110 
111 		// Concat the URL
112 		return URL::base($protocol, $index).$path;
113 	}
  1. {PHP internal call} » Kohana_Core::error_handler(arguments)

  2. SYSPATH/classes/kohana/url.php [ 108 ] » preg_replace(arguments)

  3. SYSPATH/classes/kohana/request.php [ 939 ] » Kohana_URL::site(arguments)

  4. APPPATH/classes/controller/page.php [ 95 ] » Kohana_Request->redirect(arguments)

  5. {PHP internal call} » Controller_Page->action_detay()

  6. SYSPATH/classes/kohana/request/client/internal.php [ 118 ] » ReflectionMethod->invoke(arguments)

  7. SYSPATH/classes/kohana/request/client.php [ 64 ] » Kohana_Request_Client_Internal->execute_request(arguments)

  8. SYSPATH/classes/kohana/request.php [ 1138 ] » Kohana_Request_Client->execute(arguments)

  9. DOCROOT/index.php [ 111 ] » Kohana_Request->execute()

Environment