Merge "Remove single-item HTML list for re-upload link"
[lhc/web/wiklou.git] / includes / api / ApiUserrights.php
index e251fe6..8f3c404 100644 (file)
@@ -51,8 +51,11 @@ class ApiUserrights extends ApiBase {
 
                // Deny if the user is blocked and doesn't have the full 'userrights' permission.
                // This matches what Special:UserRights does for the web UI.
-               if ( $pUser->isBlocked() && !$pUser->isAllowed( 'userrights' ) ) {
-                       $this->dieBlocked( $pUser->getBlock() );
+               if ( !$pUser->isAllowed( 'userrights' ) ) {
+                       $block = $pUser->getBlock();
+                       if ( $block && $block->isSitewide() ) {
+                               $this->dieBlocked( $block );
+                       }
                }
 
                $params = $this->extractRequestParams();