diff options
Diffstat (limited to 'maintenance/eval.php')
-rw-r--r-- | maintenance/eval.php | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/maintenance/eval.php b/maintenance/eval.php index 1502ad3e..3bd164fd 100644 --- a/maintenance/eval.php +++ b/maintenance/eval.php @@ -31,12 +31,10 @@ * @ingroup Maintenance */ -$wgUseNormalUser = (bool)getenv( 'MW_WIKIUSER' ); - $optionsWithArgs = array( 'd' ); /** */ -require_once( "commandLine.inc" ); +require_once( dirname( __FILE__ ) . "/commandLine.inc" ); if ( isset( $options['d'] ) ) { $d = $options['d']; @@ -57,13 +55,8 @@ if ( isset( $options['d'] ) ) { } } -if ( function_exists( 'readline_add_history' ) - && Maintenance::posix_isatty( 0 /*STDIN*/ ) ) -{ - $useReadline = true; -} else { - $useReadline = false; -} +$useReadline = function_exists( 'readline_add_history' ) + && Maintenance::posix_isatty( 0 /*STDIN*/ ); if ( $useReadline ) { $historyFile = isset( $_ENV['HOME'] ) ? |