-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
installer: fix indenting when generating _config.php
- Loading branch information
1 parent
591ca9c
commit 5ebebe0
Showing
1 changed file
with
26 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,31 +8,30 @@ | |
|
||
$configInput = "<?php | ||
/* | ||
* BlueThrust Clan Scripts | ||
* Copyright ".date("Y")." | ||
* | ||
* Author: Bluethrust Web Development | ||
* E-mail: [email protected] | ||
* Website: http://www.bluethrust.com | ||
* | ||
* License: http://www.bluethrust.com/license.php | ||
* | ||
*/ | ||
\$dbhost = \"".$_POST['dbhost']."\"; | ||
\$dbuser = \"".$_POST['dbuser']."\"; | ||
\$dbpass = \"".$filterConfigPass."\"; | ||
\$dbname = \"".$_POST['dbname']."\"; | ||
\$dbprefix = \"".$_POST['tableprefix']."\"; | ||
\$MAIN_ROOT = \"".$setMainRoot."\"; | ||
\$BASE_DIRECTORY = \"".$setDocumentRoot."\"; | ||
\$ADMIN_KEY = \"".$filterConfigKey."\"; // KEY FOR EXTRA SECURITY WHEN ADDING CONSOLE OPTION | ||
define(\"ADMIN_KEY\", \$ADMIN_KEY); | ||
?> | ||
/* | ||
* BlueThrust Clan Scripts | ||
* Copyright ".date("Y")." | ||
* | ||
* Author: Bluethrust Web Development | ||
* E-mail: [email protected] | ||
* Website: http://www.bluethrust.com | ||
* | ||
* License: http://www.bluethrust.com/license.php | ||
* | ||
*/ | ||
\$dbhost = \"".$_POST['dbhost']."\"; | ||
\$dbuser = \"".$_POST['dbuser']."\"; | ||
\$dbpass = \"".$filterConfigPass."\"; | ||
\$dbname = \"".$_POST['dbname']."\"; | ||
\$dbprefix = \"".$_POST['tableprefix']."\"; | ||
\$MAIN_ROOT = \"".$setMainRoot."\"; | ||
\$BASE_DIRECTORY = \"".$setDocumentRoot."\"; | ||
\$ADMIN_KEY = \"".$filterConfigKey."\"; // KEY FOR EXTRA SECURITY WHEN ADDING CONSOLE OPTION | ||
define(\"ADMIN_KEY\", \$ADMIN_KEY); | ||
"; |