From 7cf37df1f6f83a687b818321c97fd7b25c7152a0 Mon Sep 17 00:00:00 2001 From: rMalie Date: Tue, 3 Jan 2012 10:52:04 +0000 Subject: [PATCH] // Fix strict mysql in Logger class #PSFV-309 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12048 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Logger.php | 1 - 1 file changed, 1 deletion(-) diff --git a/classes/Logger.php b/classes/Logger.php index 1f5a572cf..998552638 100644 --- a/classes/Logger.php +++ b/classes/Logger.php @@ -58,7 +58,6 @@ class LoggerCore extends ObjectModel 'table' => 'log', 'primary' => 'id_log', 'fields' => array( - 'id_log' => array('type' => self::TYPE_STRING, 'validate' => 'isUnsignedId'), 'severity' => array('type' => self::TYPE_INT, 'validate' => 'isInt', 'required' => true), 'error_code' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'), 'message' => array('type' => self::TYPE_STRING, 'validate' => 'isMessage', 'required' => true),