Commit fb25edd0 authored by Paul Boco's avatar Paul Boco

Fixes issue #141 and a typo.

parent 6eae4c98
...@@ -112,7 +112,7 @@ class Auth { ...@@ -112,7 +112,7 @@ class Auth {
* and their user ID will be stored in the session via the "login" method. * and their user ID will be stored in the session via the "login" method.
* *
* The user may also be "remembered", which will keep the user logged into the * The user may also be "remembered", which will keep the user logged into the
* application for one year or until they logout. The user is rememberd via * application for one year or until they logout. The user is remembered via
* an encrypted cookie. * an encrypted cookie.
* *
* @param string $username * @param string $username
...@@ -128,7 +128,7 @@ class Auth { ...@@ -128,7 +128,7 @@ class Auth {
if ( ! is_null($user)) if ( ! is_null($user))
{ {
static::login($user, $config, $remember); static::login($user, $remember);
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment