aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/postgres.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-07-14 22:23:44 +0000
committerNils Adermann <naderman@naderman.de>2006-07-14 22:23:44 +0000
commit3a883600e8fa7ef59f7db003a296ec49346d9ae8 (patch)
tree56b2036815ecbaa22fb609a8b3de9f32b4a7d50b /phpBB/includes/db/postgres.php
parentd10e5bfc1acc671b1028bfaa16b1dee24295a222 (diff)
downloadforums-3a883600e8fa7ef59f7db003a296ec49346d9ae8.tar
forums-3a883600e8fa7ef59f7db003a296ec49346d9ae8.tar.gz
forums-3a883600e8fa7ef59f7db003a296ec49346d9ae8.tar.bz2
forums-3a883600e8fa7ef59f7db003a296ec49346d9ae8.tar.xz
forums-3a883600e8fa7ef59f7db003a296ec49346d9ae8.zip
fixing a typo in postgres dbal
git-svn-id: file:///svn/phpbb/trunk@6179 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/postgres.php')
-rw-r--r--phpBB/includes/db/postgres.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/postgres.php
index ccc038075e..f20bd2c4df 100644
--- a/phpBB/includes/db/postgres.php
+++ b/phpBB/includes/db/postgres.php
@@ -91,7 +91,7 @@ class dbal_postgres extends dbal
{
$version = @pg_version($this->db_connect_id);
- return 'PostgresSQL' . ((!empty($version)) ? ' ' . $version['client'] : '';
+ return 'PostgresSQL' . ((!empty($version)) ? ' ' . $version['client'] : '');
}
/**