@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.

Fixes bug introduced by D6251

Summary: Casting the defaul custom field storage to an int, need to stop that!

Test Plan:
Use some custom fields, make sure they work as expected.
Fixes T3444

Reviewers: epriestley, mbishopim3

Reviewed By: mbishopim3

CC: aran, Korvin, mbishopim3

Maniphest Tasks: T3444

Differential Revision: https://secure.phabricator.com/D6282

authored by

Gareth Evans and committed by
epriestley
933d45d5 35fae8f4

+3 -1
+3 -1
src/applications/maniphest/auxiliaryfield/ManiphestAuxiliaryFieldDefaultSpecification.php
··· 205 205 case self::TYPE_USER: 206 206 case self::TYPE_USERS: 207 207 return json_encode($this->getValue()); 208 - default: 208 + case self::TYPE_DATE: 209 209 return (int)$this->getValue(); 210 + default: 211 + return $this->getValue(); 210 212 } 211 213 } 212 214