// Db::autoExecute() return a boolean

This commit is contained in:
rMalie
2011-12-05 17:29:45 +00:00
parent 1c32791fa0
commit fd5de4eda2
+2 -2
View File
@@ -295,7 +295,7 @@ abstract class DbCore
$sql = $type.' INTO `'.$table.'` ('.$keys_stringified.') VALUES '.implode(', ', $values_stringified);
if ($limit)
$sql .= ' LIMIT '.(int)$limit;
return $this->q($sql, $use_cache);
return (bool)$this->q($sql, $use_cache);
}
else if ($type == 'UPDATE')
{
@@ -315,7 +315,7 @@ abstract class DbCore
$sql .= ' WHERE '.$where;
if ($limit)
$sql .= ' LIMIT '.(int)$limit;
return $this->q($sql, $use_cache);
return (bool)$this->q($sql, $use_cache);
}
else
throw new PrestashopDatabaseException('Wrong argument (miss type) in Db::autoExecute()');