merged branch rouffj/fix-3971 (PR #3998)

Commits
-------

991076a Fix #3971

Discussion
----------

Fix #3971
This commit is contained in:
Fabien Potencier 2012-04-19 11:28:24 +02:00
commit fd52f93c7e

View File

@ -13,6 +13,14 @@
configuration (i.e. `config.yml`), merging could yield a set of base URL's
for multiple environments.
### Doctrine
The DoctrineBundle is moved from the Symfony repository to the Doctrine repository.
Therefore you should change the namespace of this bundle in your AppKernel.php:
Before: `new Symfony\Bundle\DoctrineBundle\DoctrineBundle()`
After: `new Doctrine\Bundle\DoctrineBundle\DoctrineBundle()`
### HttpFoundation
* Locale management was moved from the Session class to the Request class.