Commit d2f6a846 authored by James Bennett's avatar James Bennett
Browse files

[1.0.X] Remove obsolete reference to "development version" in autoescaping docs.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9281 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent bffc238a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -443,9 +443,9 @@ To avoid this problem, you have two options:
    * Two, you can take advantage of Django's automatic HTML escaping. The
      remainder of this section describes how auto-escaping works.

By default in the Django development version, every template automatically
escapes the output of every variable tag. Specifically, these five characters
are escaped:
By default in Django, every template automatically escapes the output
of every variable tag. Specifically, these five characters are
escaped:

    * ``<`` is converted to ``&lt;``
    * ``>`` is converted to ``&gt;``