SYSPATH/classes/kohana/request/client/internal.php [ 113 ]
108 $params = $request->param();
109
110 // If the action doesn't exist, it's a 404
111 if ( ! $class->hasMethod('action_'.$action))
112 {
113 throw new HTTP_Exception_404('The requested URL :uri was not found on this server.',
114 array(':uri' => $request->uri()));
115 }
116
117 $method = $class->getMethod('action_'.$action);
118 $method->invoke($controller);
SYSPATH/classes/kohana/request/client.php [ 64 ] » Kohana_Request_Client_Internal->execute_request(arguments)
SYSPATH/classes/kohana/request.php [ 1138 ] » Kohana_Request_Client->execute(arguments)
DOCROOT/index.php [ 9 ] » Kohana_Request->execute()