1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Use array_mergev()

This commit is contained in:
vrana 2012-06-14 20:39:48 -07:00
parent 325c2077ba
commit 9e3eb37a90

View file

@ -147,7 +147,7 @@ final class DifferentialChangeset extends DifferentialDAO {
} }
$with_context[] = array_intersect_key($changes, $context); $with_context[] = array_intersect_key($changes, $context);
} }
return call_user_func('array_merge', $with_context); return array_mergev($with_context);
} }
public function getAnchorName() { public function getAnchorName() {