X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialUnblock.php;h=a04fe4e16d6ab61b829be1688d01ce9c4220de28;hb=f2b01310d90060ba2ccba3e6d36b67e942bff978;hp=632415cc1dbbc589fdf366da231afba36bf21023;hpb=5a68f2902d4e21bc76482c33344f473912768fec;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialUnblock.php b/includes/specials/SpecialUnblock.php index 632415cc1d..a04fe4e16d 100644 --- a/includes/specials/SpecialUnblock.php +++ b/includes/specials/SpecialUnblock.php @@ -205,7 +205,7 @@ class SpecialUnblock extends SpecialPage { # If the name was hidden and the blocking user cannot hide # names, then don't allow any block removals... - if ( !$performer->isAllowed( 'hideuser' ) && $block->mHideName ) { + if ( !$performer->isAllowed( 'hideuser' ) && $block->getHideName() ) { return [ 'unblock-hideuser' ]; } @@ -222,7 +222,7 @@ class SpecialUnblock extends SpecialPage { Hooks::run( 'UnblockUserComplete', [ $block, $performer ] ); # Unset _deleted fields as needed - if ( $block->mHideName ) { + if ( $block->getHideName() ) { # Something is deeply FUBAR if this is not a User object, but who knows? $id = $block->getTarget() instanceof User ? $block->getTarget()->getId()