Per title!
Description
Description
Details
Details
Subject | Repo | Branch | Lines /- | |
---|---|---|---|---|
Add UserIsLocked and UserIsHidden hook handlers | mediawiki/extensions/CentralAuth | master | 38 -0 |
Event Timeline
Comment Actions
It seems there's something wrong with APIs. popup returns "BLOCKED, LOCKED" for every user account.
Comment Actions
While $wgDisableAuthManager = false:
> $u = User::newfromName('Newuser'); > return $u->isLocked(); bool(false) > $ca = CentralAuthUser::getInstance($u); > return $ca->isLocked(); bool(true)
Works as expected when AuthManager is disabled. We might have permissions checking places with User::isLocked() so this will probably have to be fixed soon.
Comment Actions
Change 294912 had a related patch set uploaded (by Glaisher):
Add UserIsLocked and UserIsHidden hook handlers