X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fauth%2FAuthManager.php;h=c3f798fd49786f146b382b6c5e915844509e805e;hb=89539f2aa1b158fdcc703ad053e2580cb97a6385;hp=e9a6edc224163f0a0d972353b88479104320ef9a;hpb=2c0db8f5e8593a51ae0acc8285fd40b7743b0fce;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/auth/AuthManager.php b/includes/auth/AuthManager.php index e9a6edc224..c3f798fd49 100644 --- a/includes/auth/AuthManager.php +++ b/includes/auth/AuthManager.php @@ -1660,7 +1660,7 @@ class AuthManager implements LoggerAwareInterface { } } - $backoffKey = wfMemcKey( 'AuthManager', 'autocreate-failed', md5( $username ) ); + $backoffKey = $cache->makeKey( 'AuthManager', 'autocreate-failed', md5( $username ) ); if ( $cache->get( $backoffKey ) ) { $this->logger->debug( __METHOD__ . ': {username} denied by prior creation attempt failures', [ 'username' => $username,