diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2010-01-23 23:13:00 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2010-01-23 23:13:00 +0000 |
| commit | 088f7170779b98547d9862603387afee77b964a8 (patch) | |
| tree | 9b575a29c9ddebed39d518c762c3de33dd9258ab /docs | |
| parent | e71b10efb7366f9e80d54960d9e77cc527a7413e (diff) | |
Fixed #12470 - django.contrib.messages CookieStorage failing silently in safari when comma is used in message
This issue was fixed by changing the underlying cookie storage mechanism.
This will fix other bugs with cookies for Internet Explorer and Safari, but
could also cause backwards incompatibilities with existing javascript that
may parse cookie values that contain commas or semi-colons, and, very
rarely, with existing cookie values.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12282 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.2.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/releases/1.2.txt b/docs/releases/1.2.txt index f5e5f8118b..a2c70fed06 100644 --- a/docs/releases/1.2.txt +++ b/docs/releases/1.2.txt @@ -240,6 +240,15 @@ status code for the test runner is now 0 for success (no failing tests) and 1 for any number of test failures. If needed, the number of test failures can be found at the end of the test runner's output. +Cookie quoting +-------------- + +Due to bugs and variations in web browsers, we've slightly changed the way that +cookie values are encoded. Comma (',') and semi-colon (';') now use the same +octal encoding mechanism that is used for other special characters. If you +were not previously storing either of these two characters in cookies you are +not affected. + .. _deprecated-features-1.2: Features deprecated in 1.2 |
