From dfcb814a877d9c5fdf67cc0ddc8d96b4f7c1d2db Mon Sep 17 00:00:00 2001 From: Chris Beaven Date: Fri, 15 Oct 2010 00:41:37 +0000 Subject: [PATCH] Fix the version which the safe argument for the urlencode filter was added. Thanks eternicode for pointing this out. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14219 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/templates/builtins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index c0ae8cf36d..70f0ffd0d1 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -1970,7 +1970,7 @@ For example:: If ``value`` is ``"http://www.example.org/foo?a=b&c=d"``, the output will be ``"http%3A//www.example.org/foo%3Fa%3Db%26c%3Dd"``. -.. versionadded:: 1.1 +.. versionadded:: 1.3 An optional argument containing the characters which should not be escaped can be provided.