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:
parent
d2fefa65aa
commit
c6290d11fa
|
@ -35,7 +35,7 @@ protected function options($config)
|
||||||
{
|
{
|
||||||
$options = (isset($config['options'])) ? $config['options'] : array();
|
$options = (isset($config['options'])) ? $config['options'] : array();
|
||||||
|
|
||||||
return $this->options + $options;
|
return $options + $this->options;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue