diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-26 08:50:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-26 08:50:04 +0000 |
commit | 70546d29ff1a64633155e55d2973325164b01ba3 (patch) | |
tree | 1df844cf106552a3d089740cc701f441afdfd68c /includes | |
parent | 2278d592ebd27bb8c3e53e01d0b16c567f879871 (diff) | |
download | brdo-70546d29ff1a64633155e55d2973325164b01ba3.tar.gz brdo-70546d29ff1a64633155e55d2973325164b01ba3.tar.bz2 |
- Patch #472646 by Josh Waihi: fixed the PostgreSQL installation.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/database/pgsql/database.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/pgsql/database.inc b/includes/database/pgsql/database.inc index 77a950dfe..c27e8203c 100644 --- a/includes/database/pgsql/database.inc +++ b/includes/database/pgsql/database.inc @@ -35,7 +35,7 @@ class DatabaseConnection_pgsql extends DatabaseConnection { )); // Force PostgreSQL to use the UTF-8 character set by default. - $this->exec('SET NAMES "UTF8"'); + $this->exec("SET NAMES 'UTF8'"); } public function query($query, array $args = array(), $options = array()) { |