N°2746 - Fix "Modify All" fatal error

This commit is contained in:
Eric
2020-02-11 14:35:38 +01:00
parent 863cb4cad6
commit e9c1467026
2 changed files with 16 additions and 22 deletions

View File

@@ -29,6 +29,7 @@ class ormSet
protected $sClass; // class of the field
protected $sAttCode; // attcode of the field
protected $aOriginalObjects = null;
protected $m_bDisplayPartial = false;
/**
* Object from the original set, minus the removed objects
@@ -387,5 +388,19 @@ class ormSet
return implode(', ', $this->GetValue()) === implode(', ', $other->GetValue());
}
/**
* @return bool
*/
public function DisplayPartial()
{
return $this->m_bDisplayPartial;
}
/**
* @param bool $m_bDisplayPartial
*/
public function SetDisplayPartial($m_bDisplayPartial)
{
$this->m_bDisplayPartial = $m_bDisplayPartial;
}
}