Skip to content

Commit

Permalink
Dev Fixed issue where plugin survey setting would overwrite eachother.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamMousa committed Oct 23, 2013
1 parent 35aabb0 commit a1aaadc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/libraries/PluginManager/PluginEvent.php
Expand Up @@ -203,7 +203,7 @@ public function set($key, $value)
}

}
$this->_parameters = array_merge($this->_parameters, $value);
$this->_parameters = array_merge_recursive($this->_parameters, $value);
return $this;
}

Expand Down

0 comments on commit a1aaadc

Please sign in to comment.