Commit c6290d11 by Edward Mann

Fixed connector options merge bug.

Fixed issue with options ordering when merging the default and user values into one array.
parent d2fefa65
...@@ -35,7 +35,7 @@ abstract class Connector { ...@@ -35,7 +35,7 @@ abstract class Connector {
{ {
$options = (isset($config['options'])) ? $config['options'] : array(); $options = (isset($config['options'])) ? $config['options'] : array();
return $this->options + $options; return $options + $this->options;
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment