Index: trunk/phase3/maintenance/renamewiki.php |
— | — | @@ -57,7 +57,7 @@ |
58 | 58 | } |
59 | 59 | |
60 | 60 | if ( count( $stores ) ) { |
61 | | - $this->output( "Initialising external storage $store...\n" ); |
| 61 | + $this->output( "Initialising external storage...\n" ); |
62 | 62 | global $wgDBuser, $wgDBpassword, $wgExternalServers; |
63 | 63 | foreach ( $stores as $storeURL ) { |
64 | 64 | $m = array(); |
Index: trunk/phase3/maintenance/storage/recompressTracked.php |
— | — | @@ -632,7 +632,7 @@ |
633 | 633 | foreach ( $res as $row ) { |
634 | 634 | $text = Revision::getRevisionText( $row ); |
635 | 635 | if ( $text === false ) { |
636 | | - $this->critical( "Error: cannot load revision text for old_id=$textId" ); |
| 636 | + $this->critical( "Error: cannot load revision text for old_id={$row->old_id}" ); |
637 | 637 | continue; |
638 | 638 | } |
639 | 639 | |
Index: trunk/phase3/maintenance/minify.php |
— | — | @@ -95,7 +95,7 @@ |
96 | 96 | public function getExtension( $fileName ) { |
97 | 97 | $dotPos = strrpos( $fileName, '.' ); |
98 | 98 | if ( $dotPos === false ) { |
99 | | - $this->error( "No file extension, cannot determine type: $arg" ); |
| 99 | + $this->error( "No file extension, cannot determine type: $fileName" ); |
100 | 100 | exit( 1 ); |
101 | 101 | } |
102 | 102 | return substr( $fileName, $dotPos + 1 ); |