From a3d62056d8651a708fc82d837853382f28688039 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Wed, 15 Jan 2014 20:53:10 +0100 Subject: [PATCH] Fixed extra \n --- src/installer/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/Installer.php b/src/installer/Installer.php index 096965787..020dee037 100644 --- a/src/installer/Installer.php +++ b/src/installer/Installer.php @@ -142,7 +142,7 @@ LICENSE; $config = new Config(DATA_PATH . "server.properties", CONFIG_PROPERTIES); echo "[!] ".$this->lang->query_warning1."\n"; echo "[!] ".$this->lang->query_warning2."\n"; - echo "[?] ".$this->lang->query_disable." (y/N):\n"; + echo "[?] ".$this->lang->query_disable." (y/N): "; if(strtolower($this->getInput("n")) === "y"){ $config->set("enable-query", false); }else{