diff --git a/components/install/process.php b/components/install/process.php index 7777822..7c7fafa 100755 --- a/components/install/process.php +++ b/components/install/process.php @@ -98,11 +98,12 @@ if ( ! ( defined( "DBHOST" ) && defined( "DBNAME" ) && defined( "DBUSER" ) && de $aValidDBType = [ 'mysql' ,'postgresql' + ,'sqlite' ]; //Is selected database type valid? if(!in_array($dbtype,$aValidDBType)){ - die( "Invalid database. Please select one of ".implode(", "$aValidDBType)."." ); + die( "Invalid database. Please select one of ".implode(", ",$aValidDBType)."." ); } try { @@ -405,4 +406,4 @@ define("WSURL", BASE_URL . "/workspace"); saveFile( $config, $config_data ); echo( "success" ); -} \ No newline at end of file +}