From 887d70f5f6c70f88cfcd781a3736d90b7cd1326d Mon Sep 17 00:00:00 2001 From: drmonty Date: Fri, 23 Mar 2012 08:16:11 +0100 Subject: [PATCH 1/2] fixed small typo in UPGRADE-2.1.md --- UPGRADE-2.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPGRADE-2.1.md b/UPGRADE-2.1.md index 2a4927a5ec..386cf36a49 100644 --- a/UPGRADE-2.1.md +++ b/UPGRADE-2.1.md @@ -335,7 +335,7 @@ UPGRADE FROM 2.0 to 2.1 ``` * Session handler drivers should implement `\SessionHandlerInterface` or extend from - `Symfony\Component\HttpFoudation\Session\Storage\Handler\NativeHandlerInterface` base class and renamed + `Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeHandlerInterface` base class and renamed to `Handler\FooSessionHandler`. E.g. `PdoSessionStorage` becomes `Handler\PdoSessionHandler`. * Refactor code using `$session->*flash*()` methods to use `$session->getFlashBag()->*()`. From b75808b282b8506a179e2cd67ceed595d27c2064 Mon Sep 17 00:00:00 2001 From: drmonty Date: Fri, 23 Mar 2012 08:20:03 +0100 Subject: [PATCH 2/2] fixed typo in CHANGELOG-2.1.md --- CHANGELOG-2.1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG-2.1.md b/CHANGELOG-2.1.md index 21edb0f197..e9e84485df 100644 --- a/CHANGELOG-2.1.md +++ b/CHANGELOG-2.1.md @@ -263,8 +263,8 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c * added ResponseHeaderBag::makeDisposition() (implements RFC 6266) * made mimetype to extension conversion configurable * [BC BREAK] Moved all session related classes and interfaces into own namespace, as - `Symfony\Component\HttpFoudation\Session` and renamed classes accordingly. - Session handlers are located in the subnamespace `Symfony\Component\HttpFoudation\Session\Handler`. + `Symfony\Component\HttpFoundation\Session` and renamed classes accordingly. + Session handlers are located in the subnamespace `Symfony\Component\HttpFoundation\Session\Handler`. * SessionHandlers must implement `\SessionHandlerInterface` or extend from the `Symfony\Component\HttpFoundation\Storage\Handler\NativeSessionHandler` base class. * Added internal storage driver proxy mechanism for forward compatibility with