From: Brian Cassidy Date: Fri, 23 May 2008 12:42:23 +0000 (+0000) Subject: pod update (RT #36062). VERSION fix. X-Git-Tag: v0.10009_01~23 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aa4a1855cbb55e9026955901734df8ba0d85c60c;p=catagits%2FCatalyst-Plugin-Authentication.git pod update (RT #36062). VERSION fix. --- diff --git a/Changes b/Changes index 8953924..dbc5b74 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,11 @@ Revision history for Perl extension Catalyst::Plugin::Authentication -0.11007 2008-03-17 +0.10007 2008-03-17 - Documentation update on Password - to indicate proper field naming - Decouple Authentication system from session. The realm class now allows complete control over how a user is persisted across requests. + - pod fix (RT #36062) 0.10006 2008-02-15 - Additional documentation for Realms diff --git a/lib/Catalyst/Authentication/Realm.pm b/lib/Catalyst/Authentication/Realm.pm index 3bb5f28..25994b4 100644 --- a/lib/Catalyst/Authentication/Realm.pm +++ b/lib/Catalyst/Authentication/Realm.pm @@ -292,7 +292,7 @@ Performs the authentication process for the current realm. The default realm class simply delegates this to the credential and sets the authenticated user on success. Returns the authenticated user object; -=head save_user_in_session($c, $user) +=head2 save_user_in_session($c, $user) Used to save the user in a session. Saves $user in the current session, marked as originating in the current realm. Calls $store->for_session() by diff --git a/lib/Catalyst/Plugin/Authentication.pm b/lib/Catalyst/Plugin/Authentication.pm index f63b753..0bf3409 100644 --- a/lib/Catalyst/Plugin/Authentication.pm +++ b/lib/Catalyst/Plugin/Authentication.pm @@ -14,7 +14,7 @@ use Class::Inspector; use Catalyst::Authentication::Realm; -our $VERSION = "0.11000"; +our $VERSION = "0.10007"; sub set_authenticated { my ( $c, $user, $realmname ) = @_;