fixed array_merge fix :(
This commit is contained in:
parent
8c454749cc
commit
52ba9a07ac
|
@ -1379,7 +1379,8 @@ class accountContainer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Write Module-Order in variable
|
// Write Module-Order in variable
|
||||||
$this->order = array_unshift($order, 'main');
|
array_unshift($order, 'main');
|
||||||
|
$this->order = $order;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1413,7 +1414,8 @@ class accountContainer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Write Module-Order in variable
|
// Write Module-Order in variable
|
||||||
$this->order = array_unshift($order, 'main');
|
array_unshift($order, 'main');
|
||||||
|
$this->order = $order;
|
||||||
$profile = loadAccountProfile('default', $this->type);
|
$profile = loadAccountProfile('default', $this->type);
|
||||||
// pass profile to each module
|
// pass profile to each module
|
||||||
$modules = array_keys($this->module);
|
$modules = array_keys($this->module);
|
||||||
|
|
Loading…
Reference in New Issue