[-] Installer : fixed errors at the installation with insertion of null values in the database #PSCFV-3544

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16758 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
dMetzger
2012-08-08 09:23:31 +00:00
parent f74b6c667c
commit 8479ef58ee
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -322,7 +322,7 @@ abstract class DbCore
*/
public function insert($table, $data, $null_values = false, $use_cache = true, $type = Db::INSERT, $add_prefix = true)
{
if (!$data)
if (!$data && !$null_values)
return true;
if ($add_prefix)