From 1472f02b364c5bd2fb5d2b25ca3e99121ad12deb Mon Sep 17 00:00:00 2001 From: Fomafix Date: Thu, 4 Oct 2018 09:06:00 +0200 Subject: [PATCH] Phabricator: Use Tddddd instead of Bug ddddd in comments Change-Id: Ic9fe03cab270bd6be738af346164ad5d31a0d780 --- includes/Block.php | 2 +- includes/Defines.php | 2 +- includes/EditPage.php | 2 +- includes/actions/Action.php | 2 +- includes/actions/HistoryAction.php | 2 +- includes/content/JavaScriptContent.php | 2 +- includes/exception/MWExceptionRenderer.php | 2 +- includes/libs/rdbms/database/DatabaseSqlite.php | 2 +- includes/page/ImagePage.php | 2 +- includes/specialpage/ChangesListSpecialPage.php | 2 +- includes/utils/UIDGenerator.php | 4 ++-- .../archives/patch-categorylinks-better-collation2.sql | 2 +- resources/src/mediawiki.special.search.styles.css | 2 +- tests/phpunit/includes/cache/MessageCacheTest.php | 2 +- tests/phpunit/includes/utils/UIDGeneratorTest.php | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/includes/Block.php b/includes/Block.php index a7d89e23cd..913aeb93ce 100644 --- a/includes/Block.php +++ b/includes/Block.php @@ -1420,7 +1420,7 @@ class Block { } # Consider the possibility that this is not a username at all - # but actually an old subpage (bug #29797) + # but actually an old subpage (T31797) if ( strpos( $target, '/' ) !== false ) { # An old subpage, drill down to the user behind it $target = explode( '/', $target )[0]; diff --git a/includes/Defines.php b/includes/Defines.php index 72cddd2b7f..5ab27cc067 100644 --- a/includes/Defines.php +++ b/includes/Defines.php @@ -59,7 +59,7 @@ define( 'NS_SPECIAL', -1 ); * Number 100 and beyond are reserved for custom namespaces; * DO NOT assign standard namespaces at 100 or beyond. * DO NOT Change integer values as they are most probably hardcoded everywhere - * see bug #696 which talked about that. + * see T2696 which talked about that. */ define( 'NS_MAIN', 0 ); define( 'NS_TALK', 1 ); diff --git a/includes/EditPage.php b/includes/EditPage.php index 8c4b3c8257..29abfb13af 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -943,7 +943,7 @@ class EditPage { # Note that wpSectionTitle is not yet a part of the actual edit form, as wpSummary is # currently doing double duty as both edit summary and section title. Right now this # is just to allow API edits to work around this limitation, but this should be - # incorporated into the actual edit form when EditPage is rewritten (Bugs 18654, 26312). + # incorporated into the actual edit form when EditPage is rewritten (T20654, T28312). $this->sectiontitle = $request->getText( 'wpSectionTitle' ); $this->sectiontitle = preg_replace( '/^\s*=+\s*(.*?)\s*=+\s*$/', '$1', $this->sectiontitle ); diff --git a/includes/actions/Action.php b/includes/actions/Action.php index 66f4d590c8..fb761a7565 100644 --- a/includes/actions/Action.php +++ b/includes/actions/Action.php @@ -132,7 +132,7 @@ abstract class Action implements MessageLocalizer { $actionName = 'nosuchaction'; } - // Workaround for bug #20966: inability of IE to provide an action dependent + // Workaround for T22966: inability of IE to provide an action dependent // on which submit button is clicked. if ( $actionName === 'historysubmit' ) { if ( $request->getBool( 'revisiondelete' ) ) { diff --git a/includes/actions/HistoryAction.php b/includes/actions/HistoryAction.php index 2778a1d91f..7d6b548b0f 100644 --- a/includes/actions/HistoryAction.php +++ b/includes/actions/HistoryAction.php @@ -571,7 +571,7 @@ class HistoryPager extends ReverseChronologicalPager { private function getRevisionButton( $name, $msg ) { $this->preventClickjacking(); - # Note bug #20966,