Redo r78254 without the syntax error
authorRoan Kattouw <catrope@users.mediawiki.org>
Sun, 12 Dec 2010 16:18:08 +0000 (16:18 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Sun, 12 Dec 2010 16:18:08 +0000 (16:18 +0000)
includes/Title.php

index 21028ea..9adc9a8 100644 (file)
@@ -3748,11 +3748,11 @@ class Title {
         */
        public function countRevisionsBetween( $old, $new ) {
                $dbr = wfGetDB( DB_SLAVE );
-               return (int)$dbr->selectField( 'revision', 'count(*)',
-                       'rev_page = ' . intval( $this->getArticleId() ) .
-                       ' AND rev_id > ' . intval( $old ) .
-                       ' AND rev_id < ' . intval( $new ),
-                       __METHOD__
+               return (int)$dbr->selectField( 'revision', 'count(*)', array(
+                               'rev_page' => intval( $this->getArticleId() ),
+                               'rev_id > ' . intval( $old ),
+                               '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__,