Record the list of attachments (in EventNotificationEmail) + prerequisite to email-reply

SVN:trunk[2413]
This commit is contained in:
Romain Quetiez
2012-11-08 12:41:51 +00:00
parent 4ac9f0654c
commit 247b1b4d78
7 changed files with 54 additions and 3 deletions

View File

@@ -4186,7 +4186,11 @@ class AttributeTable extends AttributeDBField
// Facilitate things: allow the user to Set the value from a string
public function MakeRealValue($proposedValue, $oHostObj)
{
if (!is_array($proposedValue))
if (is_null($proposedValue))
{
return array();
}
else if (!is_array($proposedValue))
{
return array(0 => array(0 => $proposedValue));
}