fixed array_merge call
This commit is contained in:
parent
92c9d81c1e
commit
8c454749cc
|
@ -1379,7 +1379,7 @@ class accountContainer {
|
|||
}
|
||||
}
|
||||
// Write Module-Order in variable
|
||||
$this->order = array_merge ('main' ,$order);
|
||||
$this->order = array_unshift($order, 'main');
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue