aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-08-01 17:09:43 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-08-01 17:09:43 +0000
commit93536d87c98ff4dca1e7cdeb975168c446b5e738 (patch)
tree51dc28e24821585170a79f87077339905906aa1c /phpBB
parentd78703d73bd40a9d0d553cfb6d39bf5347f84927 (diff)
downloadforums-93536d87c98ff4dca1e7cdeb975168c446b5e738.tar
forums-93536d87c98ff4dca1e7cdeb975168c446b5e738.tar.gz
forums-93536d87c98ff4dca1e7cdeb975168c446b5e738.tar.bz2
forums-93536d87c98ff4dca1e7cdeb975168c446b5e738.tar.xz
forums-93536d87c98ff4dca1e7cdeb975168c446b5e738.zip
forgot this in r9909
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9911 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/db/dbal.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php
index 95cfc01b14..0e1d6cba33 100644
--- a/phpBB/includes/db/dbal.php
+++ b/phpBB/includes/db/dbal.php
@@ -435,8 +435,7 @@ class dbal
// 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;
+ return $this->sql_query('INSERT INTO ' . $table . ' ' . $this->sql_build_array('INSERT', $sql_ary));
}
$values = array();