Fix null returned by Field::IsHidden

This commit is contained in:
Pierre Goiffon
2020-12-21 15:23:46 +01:00
parent 4089e853f8
commit 4ebe3d2b2f
2 changed files with 7 additions and 7 deletions

View File

@@ -31,17 +31,17 @@ class Field extends UIBlock
/** @var string */
protected $sAttLabel;
/** @var bool */
protected $bIsHidden;
protected $bIsHidden = false;
/** @var bool */
protected $bIsReadOnly;
protected $bIsReadOnly = false;
/** @var bool */
protected $bIsMandatory;
protected $bIsMandatory = false;
/** @var bool */
protected $bMustChange;
protected $bMustChange = false;
/** @var bool */
protected $bMustPrompt;
protected $bMustPrompt = false;
/** @var bool */
protected $bIsSlave;
protected $bIsSlave = false;
/** @var string */
protected $sValueRaw;
/** @var string */