fixed array_merge fix :(

This commit is contained in:
Roland Gruber 2005-07-05 14:46:53 +00:00
parent 8c454749cc
commit 52ba9a07ac
1 changed files with 4 additions and 2 deletions

View File

@ -1379,7 +1379,8 @@ class accountContainer {
}
}
// Write Module-Order in variable
$this->order = array_unshift($order, 'main');
array_unshift($order, 'main');
$this->order = $order;
return 0;
}
@ -1413,7 +1414,8 @@ class accountContainer {
}
}
// Write Module-Order in variable
$this->order = array_unshift($order, 'main');
array_unshift($order, 'main');
$this->order = $order;
$profile = loadAccountProfile('default', $this->type);
// pass profile to each module
$modules = array_keys($this->module);