mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix issue with checkbox custom controls that have no strings defined
Summary: Fixes T3864. If you define a "bool" control but don't define a corresponding "strings", we currently fatal when trying to `idx()` into `null`. Auditors: btrahan
This commit is contained in:
parent
a09616858b
commit
173adec527
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ abstract class PhabricatorStandardCustomField
|
|||
private $fieldDescription;
|
||||
private $fieldConfig;
|
||||
private $applicationField;
|
||||
private $strings;
|
||||
private $strings = array();
|
||||
private $caption;
|
||||
private $fieldError;
|
||||
private $required;
|
||||
|
|
Loading…
Reference in a new issue