Skip to content

Commit

Permalink
When initial request is not available parse $_GET
Browse files Browse the repository at this point in the history
  • Loading branch information
enov committed Jul 22, 2015
1 parent 61dfaba commit 70b88e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/Kohana/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ public function __construct($uri, $client_params = array(), $allow_external = TR
$uri = array_shift($split_uri);

// Initial request has global $_GET already applied
if (Request::$initial !== NULL)
if (Request::$initial === NULL)
{
if ($split_uri)
{
Expand Down

0 comments on commit 70b88e8

Please sign in to comment.