summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-17 12:47:28 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-17 12:47:28 +0000
commit8be58d6e6cef306e6815764ce851a747b9ba9dd2 (patch)
tree54e5c988483e54ce65a3f3eac8f1ffcf3e0fd67e /includes
parenta745b0f68ba165de3bc94e16f29724776224a9dc (diff)
downloadbrdo-8be58d6e6cef306e6815764ce851a747b9ba9dd2.tar.gz
brdo-8be58d6e6cef306e6815764ce851a747b9ba9dd2.tar.bz2
#178478 by scor: typo in text displyed when the DB is installed but not accessible
Diffstat (limited to 'includes')
-rw-r--r--includes/database.mysql.inc2
-rw-r--r--includes/database.mysqli.inc2
-rw-r--r--includes/database.pgsql.inc2
3 files changed, 3 insertions, 3 deletions
diff --git a/includes/database.mysql.inc b/includes/database.mysql.inc
index 74a5288c9..ac60bcc5c 100644
--- a/includes/database.mysql.inc
+++ b/includes/database.mysql.inc
@@ -90,7 +90,7 @@ function db_connect($url) {
drupal_set_header('HTTP/1.1 503 Service Unavailable');
drupal_set_title('Unable to connect to database server');
print theme('maintenance_page', '<p>If you still have to install Drupal, proceed to the <a href="'. base_path() .'install.php">installation page</a>.</p>
-<p>If you have already finished installed Drupal, this either means that the username and password information in your <code>settings.php</code> file is incorrect or that we can\'t connect to the MySQL database server. This could mean your hosting provider\'s database server is down.</p>
+<p>If you have already finished installing Drupal, this either means that the username and password information in your <code>settings.php</code> file is incorrect or that we can\'t connect to the MySQL database server. This could mean your hosting provider\'s database server is down.</p>
<p>The MySQL error was: '. theme('placeholder', mysql_error()) .'.</p>
<p>Currently, the username is '. theme('placeholder', $url['user']) .' and the database server is '. theme('placeholder', $url['host']) .'.</p>
<ul>
diff --git a/includes/database.mysqli.inc b/includes/database.mysqli.inc
index adbbb66ed..b7ec9dbff 100644
--- a/includes/database.mysqli.inc
+++ b/includes/database.mysqli.inc
@@ -88,7 +88,7 @@ function db_connect($url) {
drupal_set_header('HTTP/1.1 503 Service Unavailable');
drupal_set_title('Unable to connect to database server');
print theme('maintenance_page', '<p>If you still have to install Drupal, proceed to the <a href="'. base_path() .'install.php">installation page</a>.</p>
-<p>If you have already finished installed Drupal, this either means that the username and password information in your <code>settings.php</code> file is incorrect or that we can\'t connect to the MySQL database server. This could mean your hosting provider\'s database server is down.</p>
+<p>If you have already finished installing Drupal, this either means that the username and password information in your <code>settings.php</code> file is incorrect or that we can\'t connect to the MySQL database server. This could mean your hosting provider\'s database server is down.</p>
<p>The MySQL error was: '. theme('placeholder', mysqli_connect_error()) .'.</p>
<p>Currently, the username is '. theme('placeholder', $url['user']) .' and the database server is '. theme('placeholder', $url['host']) .'.</p>
<ul>
diff --git a/includes/database.pgsql.inc b/includes/database.pgsql.inc
index 6bf37f615..deb81f7da 100644
--- a/includes/database.pgsql.inc
+++ b/includes/database.pgsql.inc
@@ -86,7 +86,7 @@ function db_connect($url) {
drupal_set_header('HTTP/1.1 503 Service Unavailable');
drupal_set_title('Unable to connect to database');
print theme('maintenance_page', '<p>If you still have to install Drupal, proceed to the <a href="'. base_path() .'install.php">installation page</a>.</p>
-<p>If you have already finished installed Drupal, this either means that the username and password information in your <code>settings.php</code> file is incorrect or that we can\'t connect to the PostgreSQL database server. This could mean your hosting provider\'s database server is down.</p>
+<p>If you have already finished installing Drupal, this either means that the username and password information in your <code>settings.php</code> file is incorrect or that we can\'t connect to the PostgreSQL database server. This could mean your hosting provider\'s database server is down.</p>
<p>The PostgreSQL error was: '. theme('placeholder', decode_entities($php_errormsg)) .'</p>
<p>Currently, the database is '. theme('placeholder', substr($url['path'], 1)) .', the username is '. theme('placeholder', $url['user']) .', and the database server is '. theme('placeholder', $url['host']) .'.</p>
<ul>