summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-02-26 19:48:43 +0000
committerDries Buytaert <dries@buytaert.net>2006-02-26 19:48:43 +0000
commit2823cec45edea3bd1f2a8d1b68d7c9b9b4bb45ac (patch)
tree30a774801c62f3000539bfd3aa110db8fd107034 /includes
parent34896516596b19336d4917dd1d72b6b925ace732 (diff)
downloadbrdo-2823cec45edea3bd1f2a8d1b68d7c9b9b4bb45ac.tar.gz
brdo-2823cec45edea3bd1f2a8d1b68d7c9b9b4bb45ac.tar.bz2
- Patch #51392 by smsimms: fixed typo in help text.
Diffstat (limited to 'includes')
-rw-r--r--includes/database.pgsql.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database.pgsql.inc b/includes/database.pgsql.inc
index e60eee98b..cf3d05dfb 100644
--- a/includes/database.pgsql.inc
+++ b/includes/database.pgsql.inc
@@ -348,7 +348,7 @@ function db_unlock_tables() {
function db_check_setup() {
$encoding = db_result(db_query('SHOW server_encoding'));
if (!in_array(strtolower($encoding), array('unicode', 'utf8'))) {
- drupal_set_message(t('Your PostgreSQL database is set up with the wrong character encoding (%encoding). It is possibile it will not work as expected. It is advised to recreate it with UTF-8/Unicode encoding. More information can be found in the <a href="%url">PostgreSQL documentation</a>.', array('%encoding' => $encoding, '%url' => 'http://www.postgresql.org/docs/7.4/interactive/multibyte.html')), 'status');
+ drupal_set_message(t('Your PostgreSQL database is set up with the wrong character encoding (%encoding). It is possible it will not work as expected. It is advised to recreate it with UTF-8/Unicode encoding. More information can be found in the <a href="%url">PostgreSQL documentation</a>.', array('%encoding' => $encoding, '%url' => 'http://www.postgresql.org/docs/7.4/interactive/multibyte.html')), 'status');
}
}