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

Fix bad method call from CustomField migration

Fixes T4480.
This commit is contained in:
epriestley 2014-02-27 09:16:16 -08:00
parent 8297c2131c
commit cce67caa0f

View file

@ -728,8 +728,8 @@ final class DifferentialRevisionEditor extends PhabricatorEditor {
$obj->setFieldIndex($index);
}
if ($obj->getValue() !== $val) {
$obj->setValue($val);
if ($obj->getFieldValue() !== $val) {
$obj->setFieldValue($val);
$obj->save();
}
}