From a0bd47a01276ae587e29928969cd64d3e5879972 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 6 Jun 2014 15:12:55 +0600 Subject: [PATCH] Correction to hidden custom fields --- .../customfield/standard/PhabricatorStandardCustomField.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php b/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php index 29fbf2bbb8..e55cc8f1e3 100644 --- a/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php +++ b/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php @@ -243,6 +243,9 @@ abstract class PhabricatorStandardCustomField } public function shouldAppearInPropertyView() { + if ($this->hidden) { + return false; + } return $this->getFieldConfigValue('view', true); }