From: Chad Horohoe Date: Thu, 5 Jun 2008 20:06:41 +0000 (+0000) Subject: Removing Special:MissingFiles for now. X-Git-Tag: 1.31.0-rc.0~47139 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=4871063b4941cbefd1904505fe376105a013368e;p=lhc%2Fweb%2Fwiklou.git Removing Special:MissingFiles for now. * _Really_ slow queries * Lack of Shared repo support --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 4cf6ee4957..3a944059e1 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -143,8 +143,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * The User class now contains a public function called isActiveEditor. Figures out if a user is active based on at least $wgActiveUserEditCount number of edits in the last $wgActiveUserDays days. -* (bug 13702) Add Special:MissingFiles to list places where an image link is - used but no such file exists. * SpecialSearchResults hook now passes results by reference, so they can be changed by extensions. diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 42effd5b90..23c68f6030 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1,4 +1,4 @@ - 'maintenance', 'Unwatchedpages' => 'maintenance', 'Fewestrevisions' => 'maintenance', - 'MissingFiles' => 'maintenance', 'Userlogin' => 'login', 'Userlogout' => 'login', diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index d04fd65421..fe41c421c7 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -107,7 +107,6 @@ class SpecialPage 'Unusedimages' => array( 'SpecialPage', 'Unusedimages' ), 'Wantedpages' => array( 'IncludableSpecialPage', 'Wantedpages' ), 'Wantedcategories' => array( 'SpecialPage', 'Wantedcategories' ), - 'Missingfiles' => array( 'SpecialPage', 'MissingFiles' ), 'Mostlinked' => array( 'SpecialPage', 'Mostlinked' ), 'Mostlinkedcategories' => array( 'SpecialPage', 'Mostlinkedcategories' ), 'Mostlinkedtemplates' => array( 'SpecialPage', 'Mostlinkedtemplates' ),