From 85234b50723a899097d6cb4421dab419739edbbc Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sun, 8 Oct 2006 00:31:07 +1300 Subject: [PATCH] Stupid typo. --- inc/BasicAuthSession.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/BasicAuthSession.php b/inc/BasicAuthSession.php index f52aba35..dd58d007 100644 --- a/inc/BasicAuthSession.php +++ b/inc/BasicAuthSession.php @@ -74,7 +74,7 @@ class BasicAuthSession { */ function CheckPassword( $username, $password ) { $qry = new PgQuery( "SELECT * FROM usr WHERE lower(username) = ? ", $username ); - if ( $qry->Exec('BasicAuth',__LINE,__FILE__) && $qry->rows == 1 ) { + if ( $qry->Exec('BasicAuth',__LINE__,__FILE__) && $qry->rows == 1 ) { $usr = $qry->Fetch(); dbg_error_log( "BasicAuth", ":CheckPassword: Name:%s, Pass:%s, File:%s", $username, $password, $usr->password ); if ( session_validate_password( $password, $usr->password ) ) {