Use link() instead of deprecated makeLinkObj() where possible.
[lhc/web/wiklou.git] / includes / specials / SpecialUnusedcategories.php
index 406f794..fe7d7a1 100644 (file)
@@ -34,7 +34,7 @@ class UnusedCategoriesPage extends QueryPage {
 
        function formatResult( $skin, $result ) {
                $title = Title::makeTitle( NS_CATEGORY, $result->title );
-               return $skin->makeLinkObj( $title, $title->getText() );
+               return $skin->link( $title, $title->getText() );
        }
 }