1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-22 02:55:41 +02:00

fixing a typo in postgres dbal

git-svn-id: file:///svn/phpbb/trunk@6179 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Nils Adermann
2006-07-14 22:23:44 +00:00
parent d10e5bfc1a
commit 3a883600e8

View File

@ -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'] : '');
}
/**