Skip to content

Commit

Permalink
[FrameworkBundle] fixed Client::doRequest that must call its parent m…
Browse files Browse the repository at this point in the history
…ethod (closes #6737)
  • Loading branch information
fabpot committed Jan 18, 2013
1 parent 0391ac7 commit ce38069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Bundle/FrameworkBundle/Client.php
Expand Up @@ -78,7 +78,7 @@ protected function doRequest($request)
$this->hasPerformedRequest = true;
}

return $this->kernel->handle($request);
return parent::doRequest($request);
}

/**
Expand Down

0 comments on commit ce38069

Please sign in to comment.