X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FAuth.class.php;h=2c3c657da1ddbd822c2ecee0bd775b27dc2a044c;hb=c46106d305d91e93fb63c0d601a5a006a02bb63a;hp=243eed567a82f50836c1d2f73cf2be67fed1560f;hpb=9a23a8c0a51b7ec38a96f525484134f3cb85dc7e;p=timetracker.git diff --git a/WEB-INF/lib/Auth.class.php b/WEB-INF/lib/Auth.class.php index 243eed56..2c3c657d 100644 --- a/WEB-INF/lib/Auth.class.php +++ b/WEB-INF/lib/Auth.class.php @@ -52,17 +52,17 @@ class Auth { { return false; } - + // isPasswordExternal - returns true if actual password is not stored in the internal DB. function isPasswordExternal() { return false; } - + // doLogin - perfoms a login procedure. function doLogin($login, $password) { $auth = $this->authenticate($login, $password); - + if (defined('AUTH_DEBUG') && isTrue(AUTH_DEBUG)) { echo '
'; var_dump($auth); echo '
'; } @@ -86,7 +86,7 @@ class Auth { echo 'login "'.$login.'" does not exist in Time Tracker database.
'; return false; } - + $this->setAuth($val['id'], $login); return true; } @@ -111,7 +111,7 @@ class Auth { function getUserLogin() { return $_SESSION['login']; } - + // getUserId - retrieves user ID from session. function getUserId() { if (isset($_SESSION['authenticated_user_id'])) @@ -132,4 +132,3 @@ class Auth { } } } -?> \ No newline at end of file