X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FOutputPage.php;h=2423315cb9e0bdc61493c8dcaa588b14e49ea5aa;hb=5466734477584e877187613fa0568dad17ed9c9f;hp=aa2afe962daf6e57aee480b6520552c22a2831d4;hpb=c6ad2554f40f8ebbe9e38ac64ea933076f348729;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/OutputPage.php b/includes/OutputPage.php index aa2afe962d..2423315cb9 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2093,11 +2093,12 @@ class OutputPage extends ContextSource { * @param Language|null $language Target language object, will override $interface * @throws MWException * @return string HTML - * @deprecated since 1.33, due to untidy output and inconsistent wrapper; + * @deprecated since 1.32, due to untidy output and inconsistent wrapper; * use parseAsContent() if $interface is default value or false, or else * parseAsInterface() if $interface is true. */ public function parse( $text, $linestart = true, $interface = false, $language = null ) { + wfDeprecated( __METHOD__, '1.33' ); return $this->parseInternal( $text, $this->getTitle(), $linestart, /*tidy*/false, $interface, $language )->getText( [ @@ -2114,7 +2115,7 @@ class OutputPage extends ContextSource { * @param bool $linestart Is this the start of a line? (Defaults to true) * @throws MWException * @return string HTML - * @since 1.33 + * @since 1.32 */ public function parseAsContent( $text, $linestart = true ) { return $this->parseInternal( @@ -2135,7 +2136,7 @@ class OutputPage extends ContextSource { * @param bool $linestart Is this the start of a line? (Defaults to true) * @throws MWException * @return string HTML - * @since 1.33 + * @since 1.32 */ public function parseAsInterface( $text, $linestart = true ) { return $this->parseInternal( @@ -2158,7 +2159,7 @@ class OutputPage extends ContextSource { * @param bool $linestart Is this the start of a line? (Defaults to true) * @throws MWException * @return string HTML - * @since 1.33 + * @since 1.32 */ public function parseInlineAsInterface( $text, $linestart = true ) { return Parser::stripOuterParagraph( @@ -2174,12 +2175,13 @@ class OutputPage extends ContextSource { * @param bool $interface Use interface language (instead of content language) while parsing * language sensitive magic words like GRAMMAR and PLURAL * @return string HTML - * @deprecated since 1.33, due to untidy output and confusing default + * @deprecated since 1.32, due to untidy output and confusing default * for $interface. Use parseInlineAsInterface() if $interface is * the default value or false, or else use * Parser::stripOuterParagraph($outputPage->parseAsContent(...)). */ public function parseInline( $text, $linestart = true, $interface = false ) { + wfDeprecated( __METHOD__, '1.33' ); $parsed = $this->parseInternal( $text, $this->getTitle(), $linestart, /*tidy*/false, $interface, /*language*/null )->getText( [ @@ -2924,7 +2926,7 @@ class OutputPage extends ContextSource { * then the warning is a bit more obvious. If the lag is * lower than $wgSlaveLagWarning, then no warning is shown. * - * @param int $lag Slave lag + * @param int $lag Replica lag */ public function showLagWarning( $lag ) { $config = $this->getConfig();