// Fix customer thread notifications for multishop #PSCFV-2546

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15724 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-05-29 09:03:12 +00:00
parent 77084e7170
commit 9de076b775
2 changed files with 11 additions and 6 deletions
+2 -2
View File
@@ -50,8 +50,8 @@ class CustomerMessageCore extends ObjectModel
'message' => array('type' => self::TYPE_STRING, 'validate' => 'isCleanHtml', 'required' => true, 'size' => 65000),
'file_name' => array('type' => self::TYPE_STRING),
'user_agent' => array('type' => self::TYPE_STRING),
'private' => array('type' => self::TYPE_STRING),
'date_add' => array('type' => self::TYPE_DATE, 'validate' => 'isDate'),
'private' => array('type' => self::TYPE_INT),
'date_add' => array('type' => self::TYPE_DATE, 'validate' => 'isDate'),
),
);