From: Kunal Mehta Date: Wed, 3 Aug 2016 06:53:51 +0000 (-0700) Subject: auth: Fix case of function call X-Git-Tag: 1.31.0-rc.0~6181^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=5c7bd77867c59d2adbe14b1b481e9d4dc38d6204;p=lhc%2Fweb%2Fwiklou.git auth: Fix case of function call Change-Id: I415a7f7ba2ea97515a110cd963ed96bb77ec7b97 --- diff --git a/includes/auth/LocalPasswordPrimaryAuthenticationProvider.php b/includes/auth/LocalPasswordPrimaryAuthenticationProvider.php index 5f5ef79c25..bbc6e8d3b5 100644 --- a/includes/auth/LocalPasswordPrimaryAuthenticationProvider.php +++ b/includes/auth/LocalPasswordPrimaryAuthenticationProvider.php @@ -110,7 +110,7 @@ class LocalPasswordPrimaryAuthenticationProvider } $status = $this->checkPasswordValidity( $username, $req->password ); - if ( !$status->isOk() ) { + if ( !$status->isOK() ) { // Fatal, can't log in return AuthenticationResponse::newFail( $status->getMessage() ); }