From c4407f7bdafd5390ecff98c2fb38aeaae9a9195c Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Thu, 6 Nov 2008 04:37:28 +0000 Subject: spruce up the display of commands --- core/controllers/welcome.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/controllers') 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
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(); -- cgit v1.2.3