revert core part of r111231
authorAntoine Musso <hashar@users.mediawiki.org>
Sun, 12 Feb 2012 19:40:13 +0000 (19:40 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sun, 12 Feb 2012 19:40:13 +0000 (19:40 +0000)
That one removed wfLoadExtensionMessages() . We do not want to break
back compatiliblity right now.

RELEASE-NOTES-1.20
includes/GlobalFunctions.php
includes/PageQueryPage.php

index 00d5a43..411d8e2 100644 (file)
@@ -15,7 +15,6 @@ production.
 === New features in 1.20 ===
 * Added TitleIsKnown hook which gets called when determining if a page exists.
 * (bug 32341) Add upload by URL domain limitation.
-* wfLoadExtensionMessages() was removed. Deprecated in 1.16, removed in 1.20.
 
 === Bug fixes in 1.20 ===
 * (bug 30245) Use the correct way to construct a log page title.
index 3af80ad..dca4e14 100644 (file)
@@ -3566,6 +3566,16 @@ function wfBoolToStr( $value ) {
        return $value ? 'true' : 'false';
 }
 
+/**
+ * Load an extension messages file
+ *
+ * @deprecated since 1.16, warnings in 1.18, remove in 1.20
+ * @codeCoverageIgnore
+ */
+function wfLoadExtensionMessages() {
+       wfDeprecated( __FUNCTION__, '1.16' );
+}
+
 /**
  * Get a platform-independent path to the null file, e.g. /dev/null
  *
index 40213d1..dc5e971 100644 (file)
@@ -6,6 +6,7 @@
  * @ingroup SpecialPage
  */
 abstract class PageQueryPage extends QueryPage {
+
        /**
         * Format the result as a simple link to the page
         *
@@ -15,14 +16,11 @@ abstract class PageQueryPage extends QueryPage {
         */
        public function formatResult( $skin, $row ) {
                global $wgContLang;
-
                $title = Title::makeTitleSafe( $row->namespace, $row->title );
                $text = $row->title;
-
                if ( $title instanceof Title ) {
                        $text = $wgContLang->convert( $title->getPrefixedText() );
                }
-
                return Linker::linkKnown( $title, htmlspecialchars( $text ) );
        }
 }