diff options
Diffstat (limited to 'includes/BadFileLookup.php')
-rw-r--r-- | includes/BadFileLookup.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/BadFileLookup.php b/includes/BadFileLookup.php index 8419f1082bc4..ce0e04efea46 100644 --- a/includes/BadFileLookup.php +++ b/includes/BadFileLookup.php @@ -128,7 +128,6 @@ class BadFileLookup { } return isset( $this->badFiles[$name] ) && ( !$contextTitle || - !isset( $this->badFiles[$name][$contextTitle->getNamespace()] - [$contextTitle->getDBkey()] ) ); + !isset( $this->badFiles[$name][$contextTitle->getNamespace()][$contextTitle->getDBkey()] ) ); } } |