X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fparser%2FParserOptions.php;h=709f159bb03722bf09aad5896586b230ad8a2125;hb=683621c048d9098a4aa61eb3eb9ff7bad0fca2e0;hp=66b16122456cccd964f2075dca3a506267df1924;hpb=de0875402c06532d91d60945e6630196b953f2fe;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/ParserOptions.php b/includes/parser/ParserOptions.php index 66b1612245..709f159bb0 100644 --- a/includes/parser/ParserOptions.php +++ b/includes/parser/ParserOptions.php @@ -895,7 +895,7 @@ class ParserOptions { /** * Timestamp used for {{CURRENTDAY}} etc. - * @return string + * @return string TS_MW timestamp */ public function getTimestamp() { if ( !isset( $this->mTimestamp ) ) { @@ -913,27 +913,6 @@ class ParserOptions { return wfSetVar( $this->mTimestamp, $x ); } - /** - * Create "edit section" links? - * @deprecated since 1.31, use ParserOutput::getText() options instead. - * @return bool - */ - public function getEditSection() { - wfDeprecated( __METHOD__, '1.31' ); - return true; - } - - /** - * Create "edit section" links? - * @deprecated since 1.31, use ParserOutput::getText() options instead. - * @param bool|null $x New value (null is no change) - * @return bool Old value - */ - public function setEditSection( $x ) { - wfDeprecated( __METHOD__, '1.31' ); - return true; - } - /** * Set the redirect target. *