Index: trunk/phase3/maintenance/fixExtLinksProtocolRelative.php |
— | — | @@ -37,7 +37,7 @@ |
38 | 38 | protected function updateSkippedMessage() { |
39 | 39 | return 'protocol-relative URLs in externallinks table already fixed.'; |
40 | 40 | } |
41 | | - |
| 41 | + |
42 | 42 | protected function doDBUpdates() { |
43 | 43 | $db = wfGetDB( DB_MASTER ); |
44 | 44 | if ( !$db->tableExists( 'externallinks' ) ) { |
— | — | @@ -53,7 +53,7 @@ |
54 | 54 | foreach ( $res as $row ) { |
55 | 55 | $count++; |
56 | 56 | if ( $count % 100 == 0 ) { |
57 | | - $this->output( $count ); |
| 57 | + $this->output( $count . "\n" ); |
58 | 58 | wfWaitForSlaves(); |
59 | 59 | } |
60 | 60 | $db->insert( 'externallinks', |