Revision: 50352
Author:   siebrand
Date:     2009-05-08 23:27:42 +0000 (Fri, 08 May 2009)

Log Message:
-----------
Follow-up on r50351. Fix syntax errors in CategoryPage.php

Modified Paths:
--------------
    trunk/phase3/includes/CategoryPage.php

Modified: trunk/phase3/includes/CategoryPage.php
===================================================================
--- trunk/phase3/includes/CategoryPage.php      2009-05-08 23:24:31 UTC (rev 
50351)
+++ trunk/phase3/includes/CategoryPage.php      2009-05-08 23:27:42 UTC (rev 
50352)
@@ -452,7 +452,7 @@
 
                $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 @@
                }
                $nextLink = wfMsgExt( 'nextn', array( 'escape', 'parsemag' ), 
$limitText );
                if( $last != '' ) {
-                       query[] = array( 'from' => $last );
+                       $query[] = array( 'from' => $last );
                        $nextLink = $sk->link(
                                $title,
                                $nextLink,



_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to