Fixed connector options merge bug.

Fixed issue with options ordering when merging the default and user values into one array.
This commit is contained in:
Edward Mann
2012-11-14 18:57:46 +00:00
parent d2fefa65aa
commit c6290d11fa

View File

@@ -35,7 +35,7 @@ abstract class Connector {
{
$options = (isset($config['options'])) ? $config['options'] : array();
return $this->options + $options;
return $options + $this->options;
}
}