From 3e27728fbcaca88b91ecadb3332cd8535e5ed93c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 8 May 2009 23:27:42 +0000 Subject: [PATCH] Follow-up on r50351. Fix syntax errors in CategoryPage.php --- includes/CategoryPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/CategoryPage.php b/includes/CategoryPage.php index 5ba858f972..43516b0c72 100644 --- a/includes/CategoryPage.php +++ b/includes/CategoryPage.php @@ -452,7 +452,7 @@ class CategoryViewer { $prevLink = wfMsgExt( 'prevn', array( 'escape', 'parsemag' ), $limitText ); if( $first != '' ) { - query[] = array( 'until' => $first ); + $query[] = array( 'until' => $first ); $prevLink = $sk->link( $title, $prevLink, @@ -462,7 +462,7 @@ class CategoryViewer { } $nextLink = wfMsgExt( 'nextn', array( 'escape', 'parsemag' ), $limitText ); if( $last != '' ) { - query[] = array( 'from' => $last ); + $query[] = array( 'from' => $last ); $nextLink = $sk->link( $title, $nextLink, -- 2.20.1