Fixed create config function not stoping execution

This commit is contained in:
Tobias Reich 2016-03-24 20:10:18 +01:00
parent 152a887bc4
commit bd0f23ed5c

View File

@ -26,7 +26,7 @@ final class Installation extends Access {
Validator::required(isset($_POST['dbHost'], $_POST['dbUser'], $_POST['dbPassword'], $_POST['dbName'], $_POST['dbTablePrefix']), __METHOD__);
echo Config::create($_POST['dbHost'], $_POST['dbUser'], $_POST['dbPassword'], $_POST['dbName'], $_POST['dbTablePrefix']);
Response::json(Config::create($_POST['dbHost'], $_POST['dbUser'], $_POST['dbPassword'], $_POST['dbName'], $_POST['dbTablePrefix']));
}