Merge "Check normalization rules of usernames during signup"
[lhc/web/wiklou.git] / includes / actions / ProtectAction.php
index 2c2b470..2e9e093 100644 (file)
@@ -41,8 +41,18 @@ class ProtectAction extends FormlessAction {
        }
 
        public function show() {
+               if ( $this->getContext()->getConfig()->get( 'UseMediaWikiUIEverywhere' ) ) {
+                       $out = $this->getOutput();
+                       $out->addModuleStyles( [
+                               'mediawiki.ui.input',
+                               'mediawiki.ui.checkbox',
+                       ] );
+               }
 
                $this->page->protect();
        }
-}
 
+       public function doesWrites() {
+               return true;
+       }
+}