X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F05_Authentication.pod;h=c94964747687b6de2adc469ca30a12c8a7d22b31;hp=617f163913291aeddcf2cdec869850769719d2f6;hb=3e1a22407659838b0de4e530339dc25ce643c5d5;hpb=ec3ef4ad2ba72cc751c8c5eccccb705602d87d09 diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index 617f163..c949647 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -553,7 +553,7 @@ use of an IF-THEN-ELSE construct in TT). =head2 Try Out Authentication The development server should have reloaded each time we edited one of -the Controllers in the previous section. Now trying going to +the Controllers in the previous section. Now try going to L and you should be redirected to the login page, hitting Shift+Reload or Ctrl+Reload if necessary (the "You are already logged in" message should I appear -- if it does, click @@ -699,7 +699,7 @@ C in your editor and enter the following text: $user->update; } -EncodedColumn lets us simple call C<$user->check_password($password)> +EncodedColumn lets us simply call C<$user->check_password($password)> to see if the user has supplied the correct password, or, as we show above, call C<$user->update($new_password)> to update the hashed password stored for this user.