summaryrefslogtreecommitdiff
path: root/core/controllers/welcome.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/controllers/welcome.php')
-rw-r--r--core/controllers/welcome.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/welcome.php b/core/controllers/welcome.php
index 53e5aaa4..a311a218 100644
--- a/core/controllers/welcome.php
+++ b/core/controllers/welcome.php
@@ -130,10 +130,10 @@ class Welcome_Controller extends Template_Controller {
$db_php = VARPATH . "database.php";
if (!file_exists($db_php)) {
$error = new stdClass();
- $error->message = "Missing: $db_php";
+ $error->message = "Missing: $db_php <br/> Run the following commands...";
$error->instructions[] = "cp " . DOCROOT . "kohana/config/database.php $db_php";
$error->instructions[] = "chmod 644 $db_php";
- $error->message2 = "Then edit this file and enter your database configuration settings.";
+ $error->message2 = "...then edit this file and enter your database configuration settings.";
$errors[] = $error;
} else if (!is_readable($db_php)) {
$error = new stdClass();