mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Merge pull request #2120 from ryanwachtl/patch-1
Missing directory separators in output of suggested _ss_environment paths
This commit is contained in:
commit
cf12ccbd2c
@ -75,7 +75,7 @@ require_once("model/DB.php");
|
|||||||
if(!isset($databaseConfig) || !isset($databaseConfig['database']) || !$databaseConfig['database']) {
|
if(!isset($databaseConfig) || !isset($databaseConfig['database']) || !$databaseConfig['database']) {
|
||||||
echo "\nPlease configure your database connection details. You can do this by creating a file
|
echo "\nPlease configure your database connection details. You can do this by creating a file
|
||||||
called _ss_environment.php in either of the following locations:\n\n";
|
called _ss_environment.php in either of the following locations:\n\n";
|
||||||
echo " - " . BASE_PATH ."_ss_environment.php\n - " . dirname(BASE_PATH) . "_ss_environment.php\n\n";
|
echo " - " . BASE_PATH . DIRECTORY_SEPARATOR . "_ss_environment.php\n - " . dirname(BASE_PATH) . DIRECTORY_SEPARATOR . "_ss_environment.php\n\n";
|
||||||
echo <<<ENVCONTENT
|
echo <<<ENVCONTENT
|
||||||
|
|
||||||
Put the following content into this file:
|
Put the following content into this file:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user