summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-07-05 01:25:05 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-07-05 01:25:05 +0000
commit7c35eee103df3b6f971ef77aa8394c898bf77687 (patch)
tree1b3d024414d33264e1c77a2108fb0e130c3b742e
parente7427cb22f21a520b117b84b02e44fbaf628ce3e (diff)
Form encoding should be changed only via HttpRequest, not on GET and POST
directly. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5614 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/unicode.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/unicode.txt b/docs/unicode.txt
index e0d7ab94e1..1ab255970c 100644
--- a/docs/unicode.txt
+++ b/docs/unicode.txt
@@ -345,9 +345,7 @@ client.
By default, the ``DEFAULT_CHARSET`` setting is used as the assumed encoding
for form data. If you need to change this for a particular form, you can set
-the ``encoding`` attribute on the ``GET`` and ``POST`` data structures. For
-convenience, changing the ``encoding`` property on an ``HttpRequest`` instance
-does this for you. For example::
+the ``encoding`` attribute on an ``HttpRequest`` instance. For example::
def some_view(request):
# We know that the data must be encoded as KOI8-R (for some reason).