pod update (RT #36062). VERSION fix.
Brian Cassidy [Fri, 23 May 2008 12:42:23 +0000 (12:42 +0000)]
Changes
lib/Catalyst/Authentication/Realm.pm
lib/Catalyst/Plugin/Authentication.pm

diff --git a/Changes b/Changes
index 8953924..dbc5b74 100644 (file)
--- 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
index 3bb5f28..25994b4 100644 (file)
@@ -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 
index f63b753..0bf3409 100644 (file)
@@ -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 ) = @_;