From 914c903250de4837d3bf6e77e496c2a3ece5f638 Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Mon, 27 May 2013 19:59:01 -0400 Subject: Cosmetics: remove tabs --- lib/install.lib.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') 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'"; } -- cgit