diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-22 13:14:43 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-22 13:14:43 +0000 |
commit | 6d380be53ddbbcb063feacad51ebea2851a3af47 (patch) | |
tree | 1e355fbeebdea979a9f1a64382c3353c70c2b5b8 | |
parent | 5f265f47d98700e84284b97529187869d144dac1 (diff) | |
download | forums-6d380be53ddbbcb063feacad51ebea2851a3af47.tar forums-6d380be53ddbbcb063feacad51ebea2851a3af47.tar.gz forums-6d380be53ddbbcb063feacad51ebea2851a3af47.tar.bz2 forums-6d380be53ddbbcb063feacad51ebea2851a3af47.tar.xz forums-6d380be53ddbbcb063feacad51ebea2851a3af47.zip |
erm, yes...
git-svn-id: file:///svn/phpbb/trunk@9295 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/db/db2.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/db2.php b/phpBB/includes/db/db2.php index df03d047c3..87210d6534 100644 --- a/phpBB/includes/db/db2.php +++ b/phpBB/includes/db/db2.php @@ -3,7 +3,7 @@ * * @package dbal * @version $Id$ -* @copyright (c) 2005 phpBB Group +* @copyright (c) 2009 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ @@ -264,7 +264,7 @@ class phpbb_dbal_db2 extends phpbb_dbal */ public function sql_nextid() { - if (function_exists('db2_last_insert_id') + if (function_exists('db2_last_insert_id')) { return @db2_last_insert_id($this->db_connect_id); } |