From 1bac26b9a8c90e4bf1175f9c5b9493c5a506fb0c Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Mon, 7 Feb 2011 22:32:16 +0000 Subject: [PATCH] Fixed #15236 -- corrected a typo and added a versionadded directive for the user_logged_in and user_logged_out signals. Thanks to claudep for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15444 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/auth.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/topics/auth.txt b/docs/topics/auth.txt index 70a33974e70..bc27ea5323a 100644 --- a/docs/topics/auth.txt +++ b/docs/topics/auth.txt @@ -657,6 +657,8 @@ How to log a user out Login and logout signals ------------------------ +.. versionadded:: 1.3 + The auth framework uses two :doc:`signals ` that can be used for notification when a user logs in or out. @@ -675,7 +677,7 @@ Arguments sent with this signal: ``user`` The user instance that just logged in. -.. data:: django.contrib.auth.signals.user_logged_outs +.. data:: django.contrib.auth.signals.user_logged_out Sent when the logout method is called.