Temporarily revert 14847; makes incompatible changes to message strings.
[lhc/web/wiklou.git] / includes / SpecialUnusedcategories.php
index e777360..270180e 100644 (file)
@@ -5,9 +5,6 @@
  * @subpackage SpecialPage
  */
 
-/** */
-require_once('QueryPage.php');
-
 /**
  *
  * @package MediaWiki
@@ -20,7 +17,7 @@ class UnusedCategoriesPage extends QueryPage {
        }
 
        function getPageHeader() {
-               return '<p>'.wfMsg('unusedcategoriestext')."</p><br />\n";
+               return '<p>' . wfMsg('unusedcategoriestext') . '</p>';
        }
 
        function getSQL() {
@@ -37,7 +34,6 @@ class UnusedCategoriesPage extends QueryPage {
        }
 
        function formatResult( $skin, $result ) {
-               global $wgLang;
                $title = Title::makeTitle( NS_CATEGORY, $result->title );
                return $skin->makeLinkObj( $title, $title->getText() );
        }