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();
}
}