Merge "Avoid master queries on GET in ProtectionForm"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Tue, 10 May 2016 13:19:44 +0000 (13:19 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Tue, 10 May 2016 13:19:44 +0000 (13:19 +0000)
includes/ProtectionForm.php

index 70192b9..451635e 100644 (file)
@@ -70,7 +70,9 @@ class ProtectionForm {
                // Check if the form should be disabled.
                // If it is, the form will be available in read-only to show levels.
                $this->mPermErrors = $this->mTitle->getUserPermissionsErrors(
-                       'protect', $this->mContext->getUser()
+                       'protect',
+                       $this->mContext->getUser(),
+                       $this->mContext->getRequest()->wasPosted() ? 'secure' : 'full' // T92357
                );
                if ( wfReadOnly() ) {
                        $this->mPermErrors[] = [ 'readonlytext', wfReadOnlyReason() ];