Skip to content

Commit

Permalink
Quick fix for data container merging
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewest committed May 6, 2016
1 parent a9fff44 commit ddb6b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public function merge($arg)
}, func_get_args());

array_unshift($arguments, $this->data);
$this->data = call_user_func_array('Arr::merge', $arguments);
$this->data = call_user_func_array('\Fuel\Common\Arr::merge', $arguments);

$this->isModified = true;

Expand Down

0 comments on commit ddb6b9c

Please sign in to comment.