@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php
··· 9 9 private $fieldDescription; 10 10 private $fieldConfig; 11 11 private $applicationField; 12 - private $strings; 12 + private $strings = array(); 13 13 private $caption; 14 14 private $fieldError; 15 15 private $required;