]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
suppress notice for undefined prompt variable when console.php is used from non-inter...
authorBrion Vibber <brion@status.net>
Wed, 6 Jan 2010 21:08:56 +0000 (13:08 -0800)
committerBrion Vibber <brion@status.net>
Wed, 6 Jan 2010 21:08:56 +0000 (13:08 -0800)
scripts/console.php

index 329caf472407a4764d5b017a2dfedc5f9cba0cb3..8b62a3a96783d7a7442326f33007d4f859e8d4f3 100755 (executable)
@@ -128,6 +128,8 @@ function console_help()
 if (CONSOLE_INTERACTIVE) {
     print "StatusNet interactive PHP console... type ctrl+D or enter 'exit' to exit.\n";
     $prompt = common_config('site', 'name') . '> ';
+} else {
+    $prompt = '';
 }
 while (!feof(STDIN)) {
     $line = read_input_line($prompt);