From aca2761faf6c821ade5584ac165f846fb84e0e32 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 11 Aug 2007 11:05:59 +0000 Subject: [PATCH] Fixed #4611 -- Removed "new in development version" annotation for the permission_required decorator. It was in 0.96. Thanks, John Shaffer. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5850 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/authentication.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/authentication.txt b/docs/authentication.txt index 589e8c9f1b..0f96504c74 100644 --- a/docs/authentication.txt +++ b/docs/authentication.txt @@ -675,8 +675,6 @@ Example in Python 2.4 syntax:: The permission_required decorator ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -**New in Django development version** - It's a relatively common task to check whether a user has a particular permission. For that reason, Django provides a shortcut for that case: the ``permission_required()`` decorator. Using this decorator, the earlier example