Remove Title::escapeLocalURL() (deprecated since 1.19)
authorumherirrender <umherirrender_de.wp@web.de>
Sat, 28 Jun 2014 13:41:39 +0000 (15:41 +0200)
committerKrinkle <krinklemail@gmail.com>
Wed, 9 Jul 2014 17:25:20 +0000 (17:25 +0000)
Change-Id: I588e1946f6dc9200261469ae8134f7cf885bba3f

RELEASE-NOTES-1.24
includes/Title.php

index 35ccae3..be32915 100644 (file)
@@ -225,6 +225,7 @@ changes to languages because of Bugzilla reports.
 * Removed Title::updateTitleProtection(). (deprecated since 1.19)
 * Removed ParserOptions::setSkin(). (deprecated since 1.19)
 * Removed Title::escapeCanonicalURL(). (deprecated since 1.19)
+* Removed Title::escapeLocalURL(). (deprecated since 1.19)
 
 ==== Renamed classes ====
 * CLDRPluralRuleConverter_Expression to CLDRPluralRuleConverterExpression
index 62142ea..3130788 100644 (file)
@@ -1775,21 +1775,6 @@ class Title {
                return $ret;
        }
 
-       /**
-        * Get an HTML-escaped version of the URL form, suitable for
-        * using in a link, without a server name or fragment
-        *
-        * @see self::getLocalURL for the arguments.
-        * @param string $query
-        * @param bool|string $query2
-        * @return string The URL
-        * @deprecated since 1.19
-        */
-       public function escapeLocalURL( $query = '', $query2 = false ) {
-               wfDeprecated( __METHOD__, '1.19' );
-               return htmlspecialchars( $this->getLocalURL( $query, $query2 ) );
-       }
-
        /**
         * Get an HTML-escaped version of the URL form, suitable for
         * using in a link, including the server name and fragment