Remove obsolete reference to "development version" in autoescaping docs.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9279 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2008-10-26 03:09:29 +00:00
parent 3784c7fac6
commit 2d40c75acf
1 changed files with 4 additions and 4 deletions

View File

@ -443,9 +443,9 @@ To avoid this problem, you have two options:
* Two, you can take advantage of Django's automatic HTML escaping. The * Two, you can take advantage of Django's automatic HTML escaping. The
remainder of this section describes how auto-escaping works. remainder of this section describes how auto-escaping works.
By default in the Django development version, every template automatically By default in the Django, every template automatically escapes the
escapes the output of every variable tag. Specifically, these five characters output of every variable tag. Specifically, these five characters are
are escaped: escaped:
* ``<`` is converted to ``&lt;`` * ``<`` is converted to ``&lt;``
* ``>`` is converted to ``&gt;`` * ``>`` is converted to ``&gt;``