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

This commit is contained in:
rMalie
2012-05-29 09:03:12 +00:00
parent 287fd8cfae
commit eb71ac91dc
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'),
),
);