From: Jesse Sheidlower Date: Tue, 5 Aug 2008 00:32:19 +0000 (+0000) Subject: typo fixing X-Git-Tag: v0.10009_01~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5812e0a3a34a2bd6b2e57f487c58818005562556;p=catagits%2FCatalyst-Plugin-Authentication.git typo fixing --- diff --git a/lib/Catalyst/Plugin/Authentication.pm b/lib/Catalyst/Plugin/Authentication.pm index 82a25fa..796aa04 100644 --- a/lib/Catalyst/Plugin/Authentication.pm +++ b/lib/Catalyst/Plugin/Authentication.pm @@ -99,7 +99,7 @@ sub persist_user { ## if we have a valid session handler - we store the ## realm in the session. If not - we have to hope that - ## the realm can recognize it's frozen user somehow. + ## the realm can recognize its frozen user somehow. if ($c->isa("Catalyst::Plugin::Session") && $c->config->{'Plugin::Authentication'}{'use_session'} && $c->session_is_valid) { @@ -238,7 +238,7 @@ sub _authentication_initialize { } # old default was to force use_session on. This must remain for that - # reason - but if use_session is already in the config, we respect it's setting. + # reason - but if use_session is already in the config, we respect its setting. if (!exists($cfg->{'use_session'})) { $cfg->{'use_session'} = 1; } @@ -270,7 +270,7 @@ sub _authentication_initialize { } } - ## if the default realm did not have a defined priority in it's config - we put it at the front. + ## if the default realm did not have a defined priority in its config - we put it at the front. if (!exists($cfg->{'realms'}{$defaultrealm}{'user_restore_priority'})) { $auth_restore_order{'default'} = 1; }