Index: trunk/phase3/maintenance/runBatchedQuery.php |
— | — | @@ -38,7 +38,7 @@ |
39 | 39 | $query = $this->getArg(); |
40 | 40 | $wait = $this->getOption( 'wait', 5 ); |
41 | 41 | $n = 1; |
42 | | - $dbw = wfGetDb( DB_MASTER ); |
| 42 | + $dbw = wfGetDB( DB_MASTER ); |
43 | 43 | do { |
44 | 44 | $this->output( "Batch $n: " ); |
45 | 45 | $n++; |
Index: trunk/phase3/includes/ExternalUser.php |
— | — | @@ -293,7 +293,7 @@ |
294 | 294 | * @return Mixed User if the account is linked, Null otherwise. |
295 | 295 | */ |
296 | 296 | public final function getLocalUser(){ |
297 | | - $dbr = wfGetDb( DB_SLAVE ); |
| 297 | + $dbr = wfGetDB( DB_SLAVE ); |
298 | 298 | $row = $dbr->selectRow( |
299 | 299 | 'external_user', |
300 | 300 | '*', |
Index: trunk/phase3/includes/specials/SpecialWithoutinterwiki.php |
— | — | @@ -90,7 +90,7 @@ |
91 | 91 | 'LEFT JOIN', 'll_from = page_id' ) ) |
92 | 92 | ); |
93 | 93 | if ( $this->prefix ) { |
94 | | - $dbr = wfGetDb( DB_SLAVE ); |
| 94 | + $dbr = wfGetDB( DB_SLAVE ); |
95 | 95 | $query['conds'][] = 'page_title ' . $dbr->buildLike( $this->prefix, $dbr->anyString() ); |
96 | 96 | } |
97 | 97 | return $query; |