From 6266585d8d7901afda4143908bca85a9566210c9 Mon Sep 17 00:00:00 2001 From: "C. Scott Ananian" Date: Thu, 2 May 2013 10:23:06 -0400 Subject: [PATCH] SpecialRedirect: Add @since documentation and add release notes The Special:Redirect page was added in change I8b0785f4fbdb3dd438a7a45263c5f375ff9d2208. Change-Id: I1a4b9a8b0a008f16e554f7edc2f21b7142fde8d4 --- RELEASE-NOTES-1.22 | 3 +++ includes/specials/SpecialRedirect.php | 1 + 2 files changed, 4 insertions(+) diff --git a/RELEASE-NOTES-1.22 b/RELEASE-NOTES-1.22 index ffdaa39359..850b43d158 100644 --- a/RELEASE-NOTES-1.22 +++ b/RELEASE-NOTES-1.22 @@ -126,6 +126,9 @@ changes to languages because of Bugzilla reports. * The Special:ActiveUsers special page was removed. * BREAKING CHANGE: mw.util.tooltipAccessKeyRegexp: The match group for the accesskey character is now $6 instead of $5. +* A new Special:Redirect page was added, providing lookup by revision ID, + user ID, or file name. The old Special:Filepath page was reimplemented + to redirect through Special:Redirect. == Compatibility == diff --git a/includes/specials/SpecialRedirect.php b/includes/specials/SpecialRedirect.php index 5ea98d5774..210cee6f51 100644 --- a/includes/specials/SpecialRedirect.php +++ b/includes/specials/SpecialRedirect.php @@ -27,6 +27,7 @@ * the file for a given filename, or the page for a given revision id. * * @ingroup SpecialPage + * @since 1.22 */ class SpecialRedirect extends FormSpecialPage { -- 2.20.1