projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f27341c
)
CRM-19279: fix formatting issues
author
Kevin Cristiano
<kcristiano@tadpole.cc>
Tue, 13 Sep 2016 15:34:44 +0000
(11:34 -0400)
committer
Kevin Cristiano
<kcristiano@tadpole.cc>
Tue, 13 Sep 2016 15:34:44 +0000
(11:34 -0400)
install/index.php
patch
|
blob
|
blame
|
history
diff --git
a/install/index.php
b/install/index.php
index ad024a88a828f876791b350674975750d4aaafe0..aac111c272136dd50ea47714e833729be2f76b0c 100644
(file)
--- a/
install/index.php
+++ b/
install/index.php
@@
-123,12
+123,12
@@
if ($installType == 'wordpress') {
$databaseConfig = $_POST['mysql'];
}
else {
- $databaseConfig = array(
- "server" => DB_HOST,
- "username" => DB_USER,
- "password" => DB_PASSWORD,
- "database" => DB_NAME,
- );
+
$databaseConfig = array(
+
"server" => DB_HOST,
+
"username" => DB_USER,
+
"password" => DB_PASSWORD,
+
"database" => DB_NAME,
+
);
}
}