Author: acydburn
Date: Sat Aug 1 18:09:43 2009
New Revision: 9911
Log:
forgot this in r9909
Modified:
branches/phpBB-3_0_0/phpBB/includes/db/dbal.php
Modified: branches/phpBB-3_0_0/phpBB/includes/db/dbal.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/db/dbal.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/db/dbal.php Sat Aug 1 18:09:43 2009
***************
*** 435,442 ****
// If by accident the sql array is only one-dimensional we build a normal insert statement
if (!is_array($_sql_ary))
{
! $this->sql_query('INSERT INTO ' . $table . ' ' . $this->sql_build_array('INSERT', $sql_ary));
! return true;
}
$values = array();
--- 435,441 ----
// If by accident the sql array is only one-dimensional we build a normal insert statement
if (!is_array($_sql_ary))
{
! return $this->sql_query('INSERT INTO ' . $table . ' ' . $this->sql_build_array('INSERT', $sql_ary));
}
$values = array();
|