mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
Record the list of attachments (in EventNotificationEmail) + prerequisite to email-reply
SVN:trunk[2413]
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user