summaryrefslogtreecommitdiffstats
path: root/Http/HttpUtils.php
Commit message (Collapse)AuthorAgeFilesLines
* [Security] fixed HttpUtils::checkRequestPath() to not catch all exceptions ↵v2.0.6Fabien Potencier2011-11-141-1/+5
| | | | (closes #2637)
* [Security] Fix checkRequestPath doc; closes #2323Jeremy Mikola2011-11-071-1/+1
|
* Fixed the creation of the subrequestsChristophe Coevoet2011-09-181-0/+3
| | | | | | The subrequest must be created using an absolute path to keep the informations about the host and the base path. Closes #2168
* Using the $status parameter instead of fixed value when creating a ↵v2.0.0Henrik Westphal2011-07-241-1/+1
| | | | RedirectResponse.
* fixes several bugsJohannes Schmitt2011-07-191-15/+42
|
* [Security] fixed redirection URLs when using {_locale} in the patternFabien Potencier2011-07-111-0/+13
|
* [Security] tweaked previous commitFabien Potencier2011-07-051-0/+1
|
* [Security] removed a hackFabien Potencier2011-07-051-9/+14
|
* [Security] added an HttpUtils class to manage logic related to Requests and ↵Fabien Potencier2011-06-221-0/+99
Responses This change removes the need for the {_locale} hack. Now, all paths in the Security component can be: * An absolute path (/login) * An absolute URL (http://symfony.com/login) * A route name (login) So, if you want to use a path that includes a global parameter (like _locale), use a route instead of a path.