summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-11-04 22:49:12 -0500
committerDavid Rothstein <drothstein@gmail.com>2014-11-04 22:49:12 -0500
commitb09c6788a60b200234efec2ce6310a1583fa4cb3 (patch)
tree8868bb7fbaaf8a1d8233d61370d4ef8922f7f5a9
parentdf8de735c3b998af03fc34c493661e2f7c4019b0 (diff)
downloadbrdo-b09c6788a60b200234efec2ce6310a1583fa4cb3.tar.gz
brdo-b09c6788a60b200234efec2ce6310a1583fa4cb3.tar.bz2
Issue #863594 by David_Rothstein, smussbach, mbrett5062: Fixed Strange first paragraph in the installer database error message.
-rw-r--r--includes/install.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/install.inc b/includes/install.inc
index 71de3e6cb..f13ee8ac2 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -420,7 +420,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/getting-started/install">installation handbook</a>. If you are unsure what any of this means you should probably contact your hosting provider.</p>' . $message;
+ $message = 'Resolve all issues below to continue the installation. For help configuring your database server, see the <a href="http://drupal.org/getting-started/install">installation handbook</a>, or contact your hosting provider.' . $message;
throw new DatabaseTaskException($message);
}
}