1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-20 00:49:11 +02:00

Fix a bogus idx() call.

Summary:

Test Plan:

Reviewers:

CC:
This commit is contained in:
epriestley 2011-01-28 11:37:44 -08:00
parent 7f4e6692cd
commit ac7fd22061

View file

@ -226,7 +226,7 @@ EOTEXT
$props = $prop_old + $prop_new;
foreach ($props as $key => $ignored) {
if (idx($prop_old, $key) !== idx($prop_new, $key)) {
$propset[$change->getCurrentPath()][$key] = idx($prop_new[$key]);
$propset[$change->getCurrentPath()][$key] = idx($prop_new, $key);
}
}
}