Opened 17 years ago

Closed 17 years ago

#4852 closed (invalid)

UnicodeBranch: force_unicode lost POST data if will set DEFAULT_CHARSET != 'utf-8'

Reported by: Alexander <sasha@…> Owned by: Adrian Holovaty
Component: Core (Other) Version: unicode
Severity: Keywords: unicodebranch
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

django/http/__init__.py (117)
-            self.appendlist(force_unicode(key, errors='replace'), force_unicode(value, errors='replace'))
+            self.appendlist(force_unicode(key, encoding=self.encoding, errors='replace'), force_unicode(value, encoding=self.encoding, errors='replace'))

Change History (1)

comment:1 by Malcolm Tredinnick, 17 years ago

Resolution: invalid
Status: newclosed

This was already fixed on trunk in [5644]. Note that if you are still using the unicode branch checkout, you should switch to using trunk. The branch code will no longer be updated, since it has now been merged into trunk.

Note: See TracTickets for help on using tickets.
Back to Top