1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-05 00:48:22 +02: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); $obj->setFieldIndex($index);
} }
if ($obj->getValue() !== $val) { if ($obj->getFieldValue() !== $val) {
$obj->setValue($val); $obj->setFieldValue($val);
$obj->save(); $obj->save();
} }
} }