Reference phabricator task instead of bugzilla bug

Change-Id: Ia8aafd1e0e319bb29e157ac33f6e5cb9dfc14e5c
这个提交包含在:
Alexander Vorwerk 2022-03-07 02:13:23 +01:00
父节点 bdc9abf6f5
当前提交 5d0a4c6495
共有 11 个文件被更改,包括 12 次插入12 次删除

查看文件

@ -13,7 +13,7 @@ $specialPageAliases = [];
/** English (English) */
$specialPageAliases['en'] = [
// Localizing Special:CentralAutoLogin causes issues (bug 54195) and is of
// Localizing Special:CentralAutoLogin causes issues (T56195) and is of
// miniscule benefit to users, so don't do so.
'CentralAutoLogin' => [ 'CentralAutoLogin' ],
'CentralLogin' => [ 'CentralLogin' ],

查看文件

@ -775,7 +775,7 @@ class CentralAuthHooks implements
/**
* Prevent "canonicalization" of Special:CentralAutoLogin to a localized
* Special namespace name. See bug 54195.
* Special namespace name. See T56195.
* @param WebRequest $request
* @param Title $title
* @param OutputPage $output

查看文件

@ -76,7 +76,7 @@ class PageDisplayHookHandler implements
$out->addModules( 'ext.centralauth.centralautologin' );
// For non-JS clients. Use WikiMap to avoid localization of the
// 'Special' namespace, see bug 54195.
// 'Special' namespace, see T56195.
$wiki = WikiMap::getWiki( WikiMap::getCurrentWikiId() );
$loginWiki = WikiMap::getWiki( $this->config->get( 'CentralAuthLoginWiki' ) );

查看文件

@ -162,7 +162,7 @@ class SpecialCentralAuth extends SpecialPage {
$this->getSkin()->setRelevantUser( $localUser );
}
// per bug 47991
// per T49991
$this->getOutput()->setHTMLTitle( $this->msg(
'pagetitle',
$this->msg(

查看文件

@ -598,7 +598,7 @@ class SpecialCentralAutoLogin extends UnlistedSpecialPage {
}
// Add a script to the page that will pull in the user's toolslist
// via ajax, and update the UI. Don't write out the tools here (bug 57081).
// via ajax, and update the UI. Don't write out the tools here (T59081).
$code = $this->userOptionsManager->getOption( $this->getUser(), 'language' );
$code = RequestContext::sanitizeLangCode( $code );
Hooks::run( 'UserGetLanguageObject',

查看文件

@ -971,7 +971,7 @@ class SpecialGlobalGroupMembership extends SpecialPage {
) {
$allGroups = $this->globalGroupLookup->getDefinedGroups();
# specify addself and removeself as empty arrays -- bug 16098
# specify addself and removeself as empty arrays - T18098
return [
'add' => $allGroups,
'remove' => $allGroups,

查看文件

@ -115,7 +115,7 @@ class SpecialGlobalRenameRequest extends FormSpecialPage {
break;
case 'available':
// TODO: ajax name availability check (bug 70623)
// TODO: ajax name availability check (T72623)
break;
default:

查看文件

@ -522,7 +522,7 @@ class SpecialMultiLock extends SpecialPage {
'',
[
'conds' => [
'log_action' => 'setstatus' // bug 57253
'log_action' => 'setstatus' // T59253
],
'showIfEmpty' => true
] );

查看文件

@ -134,7 +134,7 @@ class AttachAccount extends Maintenance {
try {
$unattached = $central->listUnattached();
} catch ( Exception $e ) {
// This might happen due to localnames inconsistencies (bug 67350)
// This might happen due to localnames inconsistencies (T69350)
$this->missing++;
$this->output(
"ERROR: Fetching unattached accounts for {$username} failed.\n"

查看文件

@ -112,7 +112,7 @@ class DeleteEmptyAccounts extends Maintenance {
try {
$unattached = $central->queryUnattached();
} catch ( Exception $e ) {
// This might happen due to localnames inconsistencies (bug 67350)
// This might happen due to localnames inconsistencies (T69350)
$this->output( "ERROR: [$username] Fetching unattached accounts failed.\n" );
return;
}

查看文件

@ -157,7 +157,7 @@ class MigrateAccount extends Maintenance {
try {
$unattached = $central->queryUnattached();
} catch ( Exception $e ) {
// This might happen due to localnames inconsistencies (bug 67350)
// This might happen due to localnames inconsistencies (T69350)
$this->output( "ERROR: Fetching unattached accounts for $username failed." );
return;
}
@ -184,7 +184,7 @@ class MigrateAccount extends Maintenance {
}
if ( $this->getOption( 'attachbroken', false ) ) {
// This option is for bug 61876 / bug 39996 where the account has
// This option is for T63876 / T41996 where the account has
// an empty password and email set, and became unattached.
// Since there is no way an account can have an empty password manually
// it has to be due to a CentralAuth bug. So just attach it then.