// pSQL fix

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14065 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vSchoener
2012-03-13 09:51:45 +00:00
parent dbc568516e
commit 16f850d10f
@@ -185,7 +185,7 @@ class AdminAccountingExportControllerCore extends AdminController
VALUES('.implode(', ', $values).')';
else
$query = 'UPDATE `'._DB_PREFIX_.'accounting_export`
SET `date` = CURRENT_TIMESTAMP, `file` = "'.$this->file.'"
SET `date` = CURRENT_TIMESTAMP, `file` = "'.pSQL($this->file).'"
WHERE `id_accounting_export` = '.(int)$id_acc_export;
Db::getInstance()->execute($query);