Index: trunk/phase3/maintenance/Maintenance.php |
— | — | @@ -295,7 +295,7 @@ |
296 | 296 | |
297 | 297 | # Make sure we can handle script parameters |
298 | 298 | if( !ini_get( 'register_argc_argv' ) ) { |
299 | | - $this->error( "Cannot get command line arguments, register_argc_argv is set to false", true ); |
| 299 | + $this->error( "Cannot get command line arguments, register_argc_argv is set to false\n", true ); |
300 | 300 | } |
301 | 301 | |
302 | 302 | if( version_compare( phpversion(), '5.2.4' ) >= 0 ) { |
— | — | @@ -453,7 +453,7 @@ |
454 | 454 | |
455 | 455 | # Also make sure we've got enough arguments |
456 | 456 | if ( count( $this->mArgs ) < count( $this->mArgList ) ) { |
457 | | - $this->error( "Not enough arguments passed", true ); |
| 457 | + $this->error( "Not enough arguments passed\n", true ); |
458 | 458 | } |
459 | 459 | } |
460 | 460 | |