mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Fix a bogus idx() call.
Summary: Test Plan: Reviewers: CC:
This commit is contained in:
parent
7f4e6692cd
commit
ac7fd22061
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ EOTEXT
|
||||||
$props = $prop_old + $prop_new;
|
$props = $prop_old + $prop_new;
|
||||||
foreach ($props as $key => $ignored) {
|
foreach ($props as $key => $ignored) {
|
||||||
if (idx($prop_old, $key) !== idx($prop_new, $key)) {
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue