Index: trunk/extensions/CodeReview/api/ApiQueryCodeRevisions.php |
— | — | @@ -62,10 +62,10 @@ |
63 | 63 | |
64 | 64 | $query = $pager->getQueryInfo(); |
65 | 65 | |
66 | | - $query['conds'][] = 'cr_id IN ( ' . $list . ' )'; |
| 66 | + $query['conds'][] = 'cr_id IN ( ' . $list . ' )'; |
67 | 67 | |
68 | | - $revisions = $db->select( $query['tables'], $query['fields'], $query['conds'], |
69 | | - __METHOD__, $query['options'], $query['join_conds'] ); |
| 68 | + $revisions = $db->select( $query['tables'], $query['fields'], $query['conds'], |
| 69 | + __METHOD__, $query['options'], $query['join_conds'] ); |
70 | 70 | |
71 | 71 | } else { |
72 | 72 | if ( !is_null( $params['start'] ) ) { |
— | — | @@ -74,7 +74,7 @@ |
75 | 75 | $limit = $params['limit']; |
76 | 76 | $pager->setLimit( $limit ); |
77 | 77 | |
78 | | - $pager->doQuery(); |
| 78 | + $pager->doQuery(); |
79 | 79 | |
80 | 80 | $revisions = $pager->getResult(); |
81 | 81 | } |