WhitespaceClean-core/install

whitespace pass over files
for reference regex that was used s/[ \t]+(\r?\n)/\1/
This commit is contained in:
mafoo
2016-03-11 12:03:29 +00:00
parent 11c2176a15
commit 91b61683c0
7 changed files with 13 additions and 13 deletions
@@ -427,7 +427,7 @@ include "root.php";
//create the table, user and set the permissions only if the db_create_username was provided
if ($this->global_settings->db_create()) {
$this->write_progress("\tCreating database");
$this->write_progress("\tCreating database");
try {
$this->dbh = new PDO($connect_string, $this->global_settings->db_create_username(), db_create_password, array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
$this->dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);