X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialUnblock.php;h=a04fe4e16d6ab61b829be1688d01ce9c4220de28;hb=f2b01310d90060ba2ccba3e6d36b67e942bff978;hp=b2d5a1633b96cd217fc3e16bc42e2304e92a0150;hpb=a5e016bee7f8c86ffa79b2a1dbef9d91d0013e90;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialUnblock.php b/includes/specials/SpecialUnblock.php index b2d5a1633b..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() @@ -248,6 +248,7 @@ class SpecialUnblock extends SpecialPage { if ( isset( $data['Tags'] ) ) { $logEntry->setTags( $data['Tags'] ); } + $logEntry->setRelations( [ 'ipb_id' => $block->getId() ] ); $logId = $logEntry->insert(); $logEntry->publish( $logId );