summaryrefslogtreecommitdiff
path: root/includes/install.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-30 05:20:36 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-30 05:20:36 +0000
commita2ab3fd876419cb2eddb2fb6d246439f0d362721 (patch)
tree12482ab789b8c38a5b9b5e864d697bab4a9df113 /includes/install.inc
parenta724915f82a0c25cabe60561cd9b4f7f72541734 (diff)
downloadbrdo-a2ab3fd876419cb2eddb2fb6d246439f0d362721.tar.gz
brdo-a2ab3fd876419cb2eddb2fb6d246439f0d362721.tar.bz2
#784864 by kbgordon7: Fixed Install Error message links to a changed handbook page.
Diffstat (limited to 'includes/install.inc')
-rw-r--r--includes/install.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 23a7137b8..1d3595547 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -367,7 +367,7 @@ abstract class DatabaseTasks {
}
}
if (!empty($message)) {
- $message = '<p>In order for Drupal to work, and to continue with the installation process, you must resolve all issues reported below. For more help with configuring your database server, see the <a href="http://drupal.org/node/258">Installation and upgrading handbook</a>. If you are unsure what any of this means you should probably contact your hosting provider.</p>' . $message;
+ $message = '<p>In order for Drupal to work, and to continue with the installation process, you must resolve all issues reported below. For more help with configuring your database server, see the <a href="http://drupal.org/getting-started/install">installation handbook</a>. If you are unsure what any of this means you should probably contact your hosting provider.</p>' . $message;
throw new DatabaseTaskException($message);
}
}
@@ -384,7 +384,7 @@ abstract class DatabaseTasks {
$this->pass('Drupal can CONNECT to the database ok.');
}
catch (Exception $e) {
- $this->fail(st('Failed to connect to your %name database server. %name reports the following message: %error.<ul><li>Are you sure you have the correct username and password?</li><li>Are you sure that you have typed the correct database hostname?</li><li>Are you sure that the database server is running?</li></ul>For more help, see the <a href="http://drupal.org/node/258">Installation and upgrading handbook</a>. If you are unsure what these terms mean you should probably contact your hosting provider.', array('%error' => $e->getMessage(), '%name' => $this->name())));
+ $this->fail(st('Failed to connect to your %name database server. %name reports the following message: %error.<ul><li>Are you sure you have the correct username and password?</li><li>Are you sure that you have typed the correct database hostname?</li><li>Are you sure that the database server is running?</li></ul>For more help, see the <a href="http://drupal.org/getting-started/install">installation handbook</a>. If you are unsure what these terms mean you should probably contact your hosting provider.', array('%error' => $e->getMessage(), '%name' => $this->name())));
return FALSE;
}
return TRUE;