removing closing tag from generated config

This commit is contained in:
Pepijn Over 2014-08-07 13:00:49 +02:00
parent b25ceae4a8
commit 55714e4208
2 changed files with 1 additions and 2 deletions

View File

@ -4,4 +4,4 @@ define('PSM_DB_USER', 'db_user');
define('PSM_DB_PASS', 'db_pass');
define('PSM_DB_NAME', 'db_name');
define('PSM_DB_HOST', 'localhost');
?>

View File

@ -286,7 +286,6 @@ class InstallController extends AbstractController {
);
$config .= $line;
}
$config .= "?>".PHP_EOL;
if(is_writeable($this->path_config)) {
file_put_contents($this->path_config, $config);
return true;