Remove Title::getEscapedText() (deprecated since 1.19)
authorumherirrender <umherirrender_de.wp@web.de>
Thu, 10 Jul 2014 16:57:29 +0000 (18:57 +0200)
committerumherirrender <umherirrender_de.wp@web.de>
Thu, 10 Jul 2014 16:57:29 +0000 (18:57 +0200)
Change-Id: I54dfbe024fee9e82f99a394f7f41141761375ca4

RELEASE-NOTES-1.24
includes/Title.php

index 00e4b74..58445ff 100644 (file)
@@ -229,6 +229,7 @@ changes to languages because of Bugzilla reports.
 * Removed Title::escapeLocalURL(). (deprecated since 1.19)
 * Removed Title::escapeFullURL(). (deprecated since 1.19)
 * Removed User::isValidEmailAddr(). (deprecated since 1.18)
+* Removed Title::getEscapedText(). (deprecated since 1.19)
 
 ==== Renamed classes ====
 * CLDRPluralRuleConverter_Expression to CLDRPluralRuleConverterExpression
index a49d52f..477373a 100644 (file)
@@ -1546,18 +1546,6 @@ class Title {
                return Title::makeTitleSafe( $this->getNamespace(), $this->getText() . '/' . $text );
        }
 
-       /**
-        * Get the HTML-escaped displayable text form.
-        * Used for the title field in <a> tags.
-        *
-        * @return string The text, including any prefixes
-        * @deprecated since 1.19
-        */
-       public function getEscapedText() {
-               wfDeprecated( __METHOD__, '1.19' );
-               return htmlspecialchars( $this->getPrefixedText() );
-       }
-
        /**
         * Get a URL-encoded form of the subpage text
         *