X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialVersion.php;h=2ad0deff017d1c5187f5c133515927e22936d069;hb=6ac8c496d16c1f88d1b8b4cf449085301ddefdce;hp=35c5689e4f3e87f9e5579645d7f42a29b9bd8eed;hpb=1abf584017a839aff886457bf854e20b5842c7d0;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialVersion.php b/includes/specials/SpecialVersion.php index 35c5689e4f..2ad0deff01 100644 --- a/includes/specials/SpecialVersion.php +++ b/includes/specials/SpecialVersion.php @@ -106,7 +106,7 @@ class SpecialVersion extends SpecialPage { } $out->setPageTitle( $this->msg( 'version-credits-title', $extName ) ); - $out->addWikiText( $wikiText ); + $out->addWikiTextAsInterface( $wikiText ); break; case 'license': @@ -129,12 +129,12 @@ class SpecialVersion extends SpecialPage { } $out->setPageTitle( $this->msg( 'version-license-title', $extName ) ); - $out->addWikiText( $wikiText ); + $out->addWikiTextAsInterface( $wikiText ); break; default: $out->addModuleStyles( 'mediawiki.special.version' ); - $out->addWikiText( + $out->addWikiTextAsInterface( $this->getMediaWikiCredits() . $this->softwareInformation() . $this->getEntryPointInfo() @@ -146,7 +146,7 @@ class SpecialVersion extends SpecialPage { $this->getParserTags() . $this->getParserFunctionHooks() ); - $out->addWikiText( $this->getWgHooks() ); + $out->addWikiTextAsInterface( $this->getWgHooks() ); $out->addHTML( $this->IPInfo() ); break; @@ -716,7 +716,7 @@ class SpecialVersion extends SpecialPage { $vcsDate = null; if ( isset( $extension['version'] ) ) { - $canonicalVersion = $out->parseInline( $extension['version'] ); + $canonicalVersion = $out->parseInlineAsInterface( $extension['version'] ); } if ( isset( $extension['path'] ) ) { @@ -792,7 +792,7 @@ class SpecialVersion extends SpecialPage { if ( isset( $extension['name'] ) ) { $licenseName = null; if ( isset( $extension['license-name'] ) ) { - $licenseName = new HtmlArmor( $out->parseInline( $extension['license-name'] ) ); + $licenseName = new HtmlArmor( $out->parseInlineAsInterface( $extension['license-name'] ) ); } elseif ( $this->getExtLicenseFileName( $extensionPath ) ) { $licenseName = $this->msg( 'version-ext-license' )->text(); } @@ -829,7 +829,7 @@ class SpecialVersion extends SpecialPage { } else { $description = ''; } - $description = $out->parseInline( $description ); + $description = $out->parseInlineAsInterface( $description ); // ... now get the authors for this extension $authors = $extension['author'] ?? []; @@ -981,11 +981,11 @@ class SpecialVersion extends SpecialPage { $list[] = $text; } elseif ( substr( $item, -5 ) == ' ...]' ) { $hasOthers = true; - $list[] = $this->getOutput()->parseInline( + $list[] = $this->getOutput()->parseInlineAsInterface( substr( $item, 0, -4 ) . $this->msg( 'version-poweredby-others' )->text() . "]" ); } else { - $list[] = $this->getOutput()->parseInline( $item ); + $list[] = $this->getOutput()->parseInlineAsInterface( $item ); } } @@ -1177,9 +1177,9 @@ class SpecialVersion extends SpecialPage { foreach ( $entryPoints as $message => $value ) { $url = wfExpandUrl( $value, PROTO_RELATIVE ); $out .= Html::openElement( 'tr' ) . - // ->text() looks like it should be ->parse(), but this function + // ->plain() looks like it should be ->parse(), but this function // returns wikitext, not HTML, boo - Html::rawElement( 'td', [], $this->msg( $message )->text() ) . + Html::rawElement( 'td', [], $this->msg( $message )->plain() ) . Html::rawElement( 'td', [], Html::rawElement( 'code', [], "[$url $value]" ) ) . Html::closeElement( 'tr' ); }