diff options
-rw-r--r-- | includes/Title.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Title.php b/includes/Title.php index a20367dcefb1..48791f02dc89 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -1840,7 +1840,7 @@ class Title { private function checkSpecialsAndNSPermissions( $action, $user, $errors, $doExpensiveQueries, $short ) { # Only 'createaccount' and 'execute' can be performed on # special pages, which don't actually exist in the DB. - $specialOKActions = array( 'createaccount', 'execute', 'read' ); + $specialOKActions = array( 'createaccount', 'execute' ); if ( NS_SPECIAL == $this->mNamespace && !in_array( $action, $specialOKActions ) ) { $errors[] = array( 'ns-specialprotected' ); } |