diff --git a/book/routing.rst b/book/routing.rst index 1c65fc173af..8fd58805353 100644 --- a/book/routing.rst +++ b/book/routing.rst @@ -105,10 +105,6 @@ This is the goal of the Symfony2 router: to map the URL of a request to a controller. Along the way, you'll learn all sorts of tricks that make mapping even the most complex URLs easy. -.. versionadded:: 2.1 - As of Symfony 2.1, the Routing component also accepts Unicode values - in routes like: /Жени/ - .. index:: single: Routing; Under the hood diff --git a/components/routing.rst b/components/routing.rst index d994b4ac1dc..5f6b0000f17 100644 --- a/components/routing.rst +++ b/components/routing.rst @@ -301,10 +301,3 @@ automatically in the background if you want to use it. A basic example of the If you use caching, the Routing component will compile new classes which are saved in the ``cache_dir``. This means your script must have write permissions for that location. - -.. versionadded:: 2.1 - As of Symfony 2.1, the Routing component also accepts Unicode values - in routes like this:: - - $routes->add('unicode_route', new Route('/Жени')); -