Index: trunk/phase3/includes/api/ApiQueryRevisions.php |
— | — | @@ -209,8 +209,7 @@ |
210 | 210 | |
211 | 211 | if ( $enumRevMode ) { |
212 | 212 | // This is mostly to prevent parameter errors (and optimize SQL?) |
213 | | - if ( !is_null( $params['startid'] ) && !is_null( $params['start'] ) ) |
214 | | - { |
| 213 | + if ( !is_null( $params['startid'] ) && !is_null( $params['start'] ) ) { |
215 | 214 | $this->dieUsage( 'start and startid cannot be used together', 'badparams' ); |
216 | 215 | } |
217 | 216 | |
— | — | @@ -218,8 +217,7 @@ |
219 | 218 | $this->dieUsage( 'end and endid cannot be used together', 'badparams' ); |
220 | 219 | } |
221 | 220 | |
222 | | - if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) |
223 | | - { |
| 221 | + if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) { |
224 | 222 | $this->dieUsage( 'user and excludeuser cannot be used together', 'badparams' ); |
225 | 223 | } |
226 | 224 | |