Created
August 25, 2011 18:44
-
-
Save daveWid/1171439 to your computer and use it in GitHub Desktop.
application/classes/request/client/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('SYSPATH') or die('No direct script access.'); | |
class Request_Client_Internal extends Kohana_Request_Client_Internal | |
{ | |
public function execute_request(Request $request) | |
{ | |
$this->_action_prefix = strtolower($request->method()); | |
return parent::execute_request($request); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment