[Catalyst-commits] r9207 - in trunk/Catalyst-Plugin-Authentication: . lib/Catalyst/Authentication

marcus at dev.catalyst.perl.org marcus at dev.catalyst.perl.org
Wed Feb 4 21:46:49 GMT 2009


Author: marcus
Date: 2009-02-04 21:46:49 +0000 (Wed, 04 Feb 2009)
New Revision: 9207

Modified:
   trunk/Catalyst-Plugin-Authentication/Changes
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Authentication/Realm.pm
Log:
Add changelog entry, use , not 

Modified: trunk/Catalyst-Plugin-Authentication/Changes
===================================================================
--- trunk/Catalyst-Plugin-Authentication/Changes	2009-02-04 21:40:41 UTC (rev 9206)
+++ trunk/Catalyst-Plugin-Authentication/Changes	2009-02-04 21:46:49 UTC (rev 9207)
@@ -1,5 +1,6 @@
 Revision history for Perl extension Catalyst::Plugin::Authentication
 
+      - Add hook for failing user restore.
       - Fix bug in Credential::Password with password_type: clear.
         - Add test for this.
       - Add mock object tests for Credential::Password with password_type: 

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Authentication/Realm.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Authentication/Realm.pm	2009-02-04 21:40:41 UTC (rev 9206)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Authentication/Realm.pm	2009-02-04 21:46:49 UTC (rev 9207)
@@ -192,7 +192,7 @@
         # this sets the realm the user originated in.
         $user->auth_realm($self->name);
     } else {
-		$app->log->error("Store claimed to have a restorable user, but restoration failed.  Did you change the user's id_field?");
+		$c->log->error("Store claimed to have a restorable user, but restoration failed.  Did you change the user's id_field?");
 		$self->failed_user_restore($c);
 	}
 	 




More information about the Catalyst-commits mailing list