From a41c92b7dd194745892804c7025511176b58040b Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Fri, 3 Sep 2010 14:24:40 +0000 Subject: [PATCH] Followup r72108, put the history file in $IP/maintenance rather than the cwd. Also add it to svnignore. --- maintenance/eval.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/eval.php b/maintenance/eval.php index 6ba613b60f..43db368d36 100644 --- a/maintenance/eval.php +++ b/maintenance/eval.php @@ -49,7 +49,7 @@ if ( function_exists( 'readline_add_history' ) if ( $useReadline ) { $historyFile = isset( $_ENV['HOME'] ) ? - "{$_ENV['HOME']}/.mweval_history" : '.mweval_history'; + "{$_ENV['HOME']}/.mweval_history" : "$IP/maintenance/.mweval_history"; readline_read_history( $historyFile ); } -- 2.20.1