From 3a883600e8fa7ef59f7db003a296ec49346d9ae8 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Fri, 14 Jul 2006 22:23:44 +0000 Subject: [PATCH] fixing a typo in postgres dbal git-svn-id: file:///svn/phpbb/trunk@6179 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/db/postgres.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'] : ''); } /**