* Setup: Fix error "[] operator not supported for strings" for setup page

This commit is contained in:
Hadi Nategh 2017-01-05 12:52:25 +01:00
parent a15070d478
commit 14bd6785d2

View File

@ -992,7 +992,7 @@ class setup
'account_primary_group' => $primary_group_id, 'account_primary_group' => $primary_group_id,
'account_expires' => -1, 'account_expires' => -1,
'account_email' => $email, 'account_email' => $email,
'account_members' => '' 'account_members' => array()
); );
if (!($accountid = $this->accounts->save($account))) if (!($accountid = $this->accounts->save($account)))
{ {