Page MenuHomePhorge

D25325.1737216510.diff
No OneTemporary

D25325.1737216510.diff

diff --git a/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php b/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php
--- a/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php
+++ b/src/infrastructure/customfield/standard/PhabricatorStandardCustomField.php
@@ -301,10 +301,14 @@
}
public function renderPropertyViewValue(array $handles) {
- if (!phutil_nonempty_string($this->getFieldValue())) {
- return null;
+ // If your field needs to render anything more complicated then a string,
+ // then you should override this method.
+ $value_str = phutil_string_cast($this->getFieldValue());
+
+ if (phutil_nonempty_string($value_str)) {
+ return $value_str;
}
- return $this->getFieldValue();
+ return null;
}
public function shouldAppearInApplicationSearch() {

File Metadata

Mime Type
text/plain
Expires
Sat, Jan 18, 16:08 (2 d, 9 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1113497
Default Alt Text
D25325.1737216510.diff (883 B)

Event Timeline