Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-07-04 15:24:00 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-07-04 17:21:26 +0400
commitc272338897498fc1c2f4964d5030a578c186896e (patch)
tree85cecd3f37721acfceb097b47a442c59c5be6131 /core/setup/controller.php
parent74edbd5df0bf1a4b13af5b7e94d01bfa9fd1487f (diff)
set localhost as default database host for installation
Diffstat (limited to 'core/setup/controller.php')
-rw-r--r--core/setup/controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php
index cdbe0f7e129..e764b232e89 100644
--- a/core/setup/controller.php
+++ b/core/setup/controller.php
@@ -41,7 +41,7 @@ class Controller {
'dbpass' => '',
'dbname' => '',
'dbtablespace' => '',
- 'dbhost' => '',
+ 'dbhost' => 'localhost',
'dbtype' => '',
);
$parameters = array_merge($defaults, $post);