Fix bad method call from CustomField migration
Fixes T4480.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user