From: Roland Häder Date: Sat, 18 Jul 2009 05:16:16 +0000 (+0000) Subject: Now default_console_command in console responses X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e3e2463a679ef98773b81be7b0a364edd0537930;p=core.git Now default_console_command in console responses --- diff --git a/inc/classes/main/response/console/class_ConsoleResponse.php b/inc/classes/main/response/console/class_ConsoleResponse.php index dcd25d37..88e1dd80 100644 --- a/inc/classes/main/response/console/class_ConsoleResponse.php +++ b/inc/classes/main/response/console/class_ConsoleResponse.php @@ -118,7 +118,7 @@ class ConsoleResponse extends BaseResponse implements Responseable { * @return $defaultCommand Default command for this response */ public function getDefaultCommand () { - $defaultCommand = $this->getConfigInstance()->readConfig('default_web_command'); + $defaultCommand = $this->getConfigInstance()->readConfig('default_console_command'); return $defaultCommand; } }