X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FMediaWiki.php;h=521c02c922ece35d9fb475bc9e77b288d9854dab;hb=22806b0a4509e97b56fb52b387e17e3c80fb7eb2;hp=cfe496593223cdfaee71376c6da32d27d21b0655;hpb=b5497be72167ae380afbb2ce710594caff9733f8;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/MediaWiki.php b/includes/MediaWiki.php index cfe4965932..521c02c922 100644 --- a/includes/MediaWiki.php +++ b/includes/MediaWiki.php @@ -73,7 +73,7 @@ class MediaWiki { if ( $request->getCheck( 'search' ) ) { // Compatibility with old search URLs which didn't use Special:Search // Just check for presence here, so blank requests still - // show the search page when using ugly URLs (bug 8054). + // show the search page when using ugly URLs (T10054). $ret = SpecialPage::getTitleFor( 'Search' ); } elseif ( $curid ) { // URLs like this are generated by RC, because rc_title isn't always accurate @@ -183,7 +183,7 @@ class MediaWiki { $unused = null; // To pass it by reference Hooks::run( 'BeforeInitialize', [ &$title, &$unused, &$output, &$user, $request, $this ] ); - // Invalid titles. Bug 21776: The interwikis must redirect even if the page name is empty. + // Invalid titles. T23776: The interwikis must redirect even if the page name is empty. if ( is_null( $title ) || ( $title->getDBkey() == '' && !$title->isExternal() ) || $title->isSpecial( 'Badtitle' ) ) { @@ -203,7 +203,7 @@ class MediaWiki { ? [] // relies on HMAC key signature alone : $title->getUserPermissionsErrors( 'read', $user ); if ( count( $permErrors ) ) { - // Bug 32276: allowing the skin to generate output with $wgTitle or + // T34276: allowing the skin to generate output with $wgTitle or // $this->context->title set to the input title would allow anonymous users to // determine whether a page exists, potentially leaking private data. In fact, the // curid and oldid request parameters would allow page titles to be enumerated even @@ -520,7 +520,7 @@ class MediaWiki { try { $this->main(); } catch ( ErrorPageError $e ) { - // Bug 62091: while exceptions are convenient to bubble up GUI errors, + // T64091: while exceptions are convenient to bubble up GUI errors, // they are not internal application faults. As with normal requests, this // should commit, print the output, do deferred updates, jobs, and profiling. $this->doPreOutputCommit();