From: Rob Church Date: Tue, 6 Jun 2006 18:31:42 +0000 (+0000) Subject: Redirect Special:Logs to Special:Log X-Git-Tag: 1.31.0-rc.0~56867 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=e48d52d8e3ee4984a9f983b822f448e9bb0812ef;p=lhc%2Fweb%2Fwiklou.git Redirect Special:Logs to Special:Log --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index a29e017088..b2c0d1a04a 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -441,7 +441,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Edit security precautions in raw HTML mode, etc * (bug 6197) Update to Indonesian translation (id) #19 * (bug 6175) Improvement to German translation (de) - +* Redirect Special:Logs to Special:Log == Compatibility == diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 7c5465459f..8dc51c1228 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -188,6 +188,7 @@ class SpecialPage 'Mytalk' => Title::makeTitle( NS_USER_TALK, $wgUser->getName() ), 'Mycontributions' => Title::makeTitle( NS_SPECIAL, 'Contributions/' . $wgUser->getName() ), 'Listadmins' => Title::makeTitle( NS_SPECIAL, 'Listusers/sysop' ), # @bug 2832 + 'Logs' => Title::makeTitle( NS_SPECIAL, 'Log' ), 'Randompage' => Title::makeTitle( NS_SPECIAL, 'Random' ), 'Userlist' => Title::makeTitle( NS_SPECIAL, 'Listusers' ) );