Add Special:[All]MyFiles as alias for Special:[All]MyUploads
authorBrian Wolff <bawolff+wn@gmail.com>
Sat, 20 Apr 2013 00:41:26 +0000 (21:41 -0300)
committerBrian Wolff <bawolff+wn@gmail.com>
Wed, 28 Aug 2013 20:31:02 +0000 (14:31 -0600)
I've been typing the wrong one all day. When I mentioned it on
irc, Odder seemed to think making an alias would be a good idea.

Change-Id: I4373caf65495b1bd773758d880b1f5c03cfbfe2a

RELEASE-NOTES-1.22
languages/messages/MessagesEn.php

index c90fdbe..f0490d4 100644 (file)
@@ -204,6 +204,8 @@ production.
 * (bug 30607) Special:ListFiles can now show old versions of files. Additionally
   Special:AllMyUploads was introduced so the user can get a list of all things
   they have ever uploaded, even if it was subsequently overriden.
+* Introduced Special:MyFiles and Special:AllMyFiles as an alias for Special:MyUploads
+  and Special:AllMyUploads respectively.
 
 === Bug fixes in 1.22 ===
 * Disable Special:PasswordReset when $wgEnableEmail is false. Previously one
index 67f29d1..51c9e1a 100644 (file)
@@ -385,7 +385,7 @@ $magicWords = array(
 $specialPageAliases = array(
        'Activeusers'               => array( 'ActiveUsers' ),
        'Allmessages'               => array( 'AllMessages' ),
-       'AllMyUploads'              => array( 'AllMyUploads' ),
+       'AllMyUploads'              => array( 'AllMyUploads', 'AllMyFiles' ),
        'Allpages'                  => array( 'AllPages' ),
        'Ancientpages'              => array( 'AncientPages' ),
        'Badtitle'                  => array( 'Badtitle' ),
@@ -439,7 +439,7 @@ $specialPageAliases = array(
        'Mycontributions'           => array( 'MyContributions' ),
        'Mypage'                    => array( 'MyPage' ),
        'Mytalk'                    => array( 'MyTalk' ),
-       'Myuploads'                 => array( 'MyUploads' ),
+       'Myuploads'                 => array( 'MyUploads', 'MyFiles' ),
        'Newimages'                 => array( 'NewFiles', 'NewImages' ),
        'Newpages'                  => array( 'NewPages' ),
        'PagesWithProp'             => array( 'PagesWithProp', 'Pageswithprop', 'PagesByProp', 'Pagesbyprop' ),