Index: trunk/extensions/Translate/TranslateUtils.php |
— | — | @@ -97,7 +97,7 @@ |
98 | 98 | $sql = "SELECT $fields, substring_index(rc_title, '/', -1) as lang FROM $recentchanges " . |
99 | 99 | "WHERE rc_timestamp >= '{$cutoff}' " . |
100 | 100 | "AND rc_namespace in ($namespaces) " . |
101 | | - $bots ? '' : 'AND rc_bot = 0' . |
| 101 | + ( $bots ? '' : 'AND rc_bot = 0 ' ) . |
102 | 102 | "ORDER BY lang ASC, rc_timestamp DESC"; |
103 | 103 | |
104 | 104 | $res = $dbr->query( $sql, __METHOD__ ); |