diff options
Diffstat (limited to 'includes/specials/SpecialWantedfiles.php')
-rw-r--r-- | includes/specials/SpecialWantedfiles.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/specials/SpecialWantedfiles.php b/includes/specials/SpecialWantedfiles.php index 937a503c..8a1a6c6c 100644 --- a/includes/specials/SpecialWantedfiles.php +++ b/includes/specials/SpecialWantedfiles.php @@ -99,10 +99,10 @@ class WantedFilesPage extends WantedQueryPage { * Use wfFindFile so we still think file namespace pages without * files are missing, but valid file redirects and foreign files are ok. * - * @return boolean + * @return bool */ protected function existenceCheck( Title $title ) { - return (bool) wfFindFile( $title ); + return (bool)wfFindFile( $title ); } function getQueryInfo() { |