From: Peter Karman Date: Thu, 25 Oct 2007 20:33:48 +0000 (+0000) Subject: method name changed from login() to authenticate() X-Git-Tag: v5.8005~324 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=4f8ea4b998626d5e94d2042783ce8e955e03d2a5 method name changed from login() to authenticate() --- diff --git a/lib/Catalyst/Manual/Tutorial/Authentication.pod b/lib/Catalyst/Manual/Tutorial/Authentication.pod index 673a93d..28e2501 100644 --- a/lib/Catalyst/Manual/Tutorial/Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/Authentication.pod @@ -447,7 +447,7 @@ Then update it to match: # If the username and password values were found in form if ($username && $password) { # Attempt to log the user in - if ($c->login($username, $password)) { + if ($c->authenticate($username, $password)) { # If successful, then let them use the application $c->response->redirect($c->uri_for('/books/list')); return;