Skip to content

Commit

Permalink
[WebBundle] Controller::generateUrl() was not passing absolute parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola authored and fabpot committed May 25, 2010
1 parent abe86d2 commit e282820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Framework/WebBundle/Controller.php
Expand Up @@ -80,7 +80,7 @@ public function createResponse($content = '', $status = 200, array $headers = ar
*/
public function generateUrl($route, array $parameters = array(), $absolute = false)
{
return $this->container->getRouterService()->generate($route, $parameters);
return $this->container->getRouterService()->generate($route, $parameters, $absolute);
}

/**
Expand Down

0 comments on commit e282820

Please sign in to comment.