diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-05-27 19:59:01 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-05-27 19:59:01 -0400 |
commit | 914c903250de4837d3bf6e77e496c2a3ece5f638 (patch) | |
tree | 9101cde986a23e37214f9e2d0ad04c521281ba63 /lib | |
parent | 4caafd37a6782d463241ee6d1b4cfe6b9d7f1805 (diff) | |
download | ampache-914c903250de4837d3bf6e77e496c2a3ece5f638.tar.gz ampache-914c903250de4837d3bf6e77e496c2a3ece5f638.tar.bz2 ampache-914c903250de4837d3bf6e77e496c2a3ece5f638.zip |
Cosmetics: remove tabs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/install.lib.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/install.lib.php b/lib/install.lib.php index d1352aa6..ef300101 100644 --- a/lib/install.lib.php +++ b/lib/install.lib.php @@ -155,9 +155,9 @@ function install_insert_db($db_user = null, $db_pass = null, $overwrite = false) // Check to see if we should create a user here if (strlen($db_user) && strlen($db_pass)) { - $db_host = Config::get('database_hostname'); - $sql = 'GRANT ALL PRIVILEGES ON `' . Dba::escape($database) . '`.* TO ' . - "'" . Dba::escape($db_user) . "'"; + $db_host = Config::get('database_hostname'); + $sql = 'GRANT ALL PRIVILEGES ON `' . Dba::escape($database) . '`.* TO ' . + "'" . Dba::escape($db_user) . "'"; if ($db_host == 'localhost' || strpos($db_host, '/') === 0) { $sql .= "@'localhost'"; } |