Merge "Skin: Make skins aware of their registered skin name"
[lhc/web/wiklou.git] / includes / specials / SpecialUnblock.php
index 0d42e3f..0da9b7a 100644 (file)
@@ -59,7 +59,7 @@ class SpecialUnblock extends SpecialPage {
                $out->setPageTitle( $this->msg( 'unblockip' ) );
                $out->addModules( [ 'mediawiki.special', 'mediawiki.userSuggest' ] );
 
-               $form = new HTMLForm( $this->getFields(), $this->getContext() );
+               $form = HTMLForm::factory( 'ooui', $this->getFields(), $this->getContext() );
                $form->setWrapperLegendMsg( 'unblockip' );
                $form->setSubmitCallback( [ __CLASS__, 'processUIUnblock' ] );
                $form->setSubmitTextMsg( 'ipusubmit' );
@@ -186,7 +186,7 @@ class SpecialUnblock extends SpecialPage {
                        return [ [ 'ipb_cant_unblock', $target ] ];
                }
 
-               # bug 15810: blocked admins should have limited access here.  This
+               # T17810: blocked admins should have limited access here.  This
                # won't allow sysops to remove autoblocks on themselves, but they
                # should have ipblock-exempt anyway
                $status = SpecialBlock::checkUnblockSelf( $target, $performer );