1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 13:22:42 +01:00

Minor, fix an issue with StoredCustomFields that serialize, like JIRA

This commit is contained in:
epriestley 2014-03-08 07:36:04 -08:00
parent 44b41a94ae
commit 06626205fe

View file

@ -39,4 +39,9 @@ abstract class DifferentialStoredCustomField
return $this; return $this;
} }
public function setValueFromApplicationTransactions($value) {
$this->setValue($value);
return $this;
}
} }