erm, yes...

git-svn-id: file:///svn/phpbb/trunk@9295 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2009-01-22 13:14:43 +00:00
parent 5f265f47d9
commit 6d380be53d

View file

@ -3,7 +3,7 @@
* *
* @package dbal * @package dbal
* @version $Id$ * @version $Id$
* @copyright (c) 2005 phpBB Group * @copyright (c) 2009 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @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() 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); return @db2_last_insert_id($this->db_connect_id);
} }