This is not an array, but a parameter. Revert r78254. Is the precommit hook not working?
authorPlatonides <platonides@users.mediawiki.org>
Sun, 12 Dec 2010 16:15:35 +0000 (16:15 +0000)
committerPlatonides <platonides@users.mediawiki.org>
Sun, 12 Dec 2010 16:15:35 +0000 (16:15 +0000)
PHP Parse error:  syntax error, unexpected T_DOUBLE_ARROW in includes/Title.php on line 3752

includes/Title.php

index 76bf76a..21028ea 100644 (file)
@@ -3749,7 +3749,7 @@ class Title {
        public function countRevisionsBetween( $old, $new ) {
                $dbr = wfGetDB( DB_SLAVE );
                return (int)$dbr->selectField( 'revision', 'count(*)',
-                       'rev_page' => intval( $this->getArticleId() ) .
+                       'rev_page = ' . intval( $this->getArticleId() ) .
                        ' AND rev_id > ' . intval( $old ) .
                        ' AND rev_id < ' . intval( $new ),
                        __METHOD__
@@ -3770,7 +3770,7 @@ class Title {
                $db = ( $flags & self::GAID_FOR_UPDATE ) ? wfGetDB( DB_MASTER ) : wfGetDB( DB_SLAVE );
                $res = $db->select( 'revision', 'DISTINCT rev_user_text',
                        array(
-                               'rev_page' => $this->getArticleID(),
+                               'rev_page = ' . $this->getArticleID(),
                                'rev_id > ' . (int)$fromRevId,
                                'rev_id < ' . (int)$toRevId
                        ), __METHOD__,