From 927e08647910291ac23a11214a75c1b704a99302 Mon Sep 17 00:00:00 2001 From: Shane King Date: Tue, 7 Dec 2004 05:35:14 +0000 Subject: [PATCH] Fix for buf #1026, where next/prev page links point to the wrong place. --- includes/SpecialUncategorizedcategories.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialUncategorizedcategories.php b/includes/SpecialUncategorizedcategories.php index 77afdf2780..af24c824b0 100755 --- a/includes/SpecialUncategorizedcategories.php +++ b/includes/SpecialUncategorizedcategories.php @@ -27,10 +27,10 @@ class UncategorizedCategoriesPage extends UncategorizedPagesPage { function wfSpecialUncategorizedcategories() { list( $limit, $offset ) = wfCheckLimits(); - $lpp = new UncategorizedPagesPage(); + $lpp = new UncategorizedCategoriesPage(); $lpp->requestedNamespace = NS_CATEGORY; return $lpp->doQuery( $offset, $limit ); } -?> \ No newline at end of file +?> -- 2.20.1