Kaydet (Commit) a75de3f3 authored tarafından Malcolm Tredinnick's avatar Malcolm Tredinnick

Changed a documentation example that wasn't wrong to stop complaints.

Fixed #7544.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7811 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 8cb128e5
......@@ -477,11 +477,11 @@ escaped when the template is written.
This means you would write ::
{{ data|default:"3 > 2" }}
{{ data|default:"3 < 2" }}
...rather than ::
{{ data|default:"3 > 2" }} <-- Bad! Don't do this.
{{ data|default:"3 < 2" }} <-- Bad! Don't do this.
This doesn't affect what happens to data coming from the variable itself.
The variable's contents are still automatically escaped, if necessary, because
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment