mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
changing the way the account object gets instanciated again a bit, as the new setup stuff wasnt working fully after the last fix
This commit is contained in:
parent
6651f0efc4
commit
86001bea68
@ -900,7 +900,8 @@
|
||||
$GLOBALS['egw']->db = clone($this->db);
|
||||
$GLOBALS['egw']->common =& CreateObject('phpgwapi.common');
|
||||
|
||||
$GLOBALS['egw']->accounts = $this->accounts = new accounts($config);
|
||||
$this->accounts = new accounts($config);
|
||||
if (!is_object($GLOBALS['egw']->accounts)) $GLOBALS['egw']->accounts = $this->accounts;
|
||||
$this->accounts->cache_invalidate(); // the cache is shared for all instances of the class
|
||||
|
||||
if(($GLOBALS['egw_info']['server']['account_repository'] == 'ldap') &&
|
||||
|
@ -157,6 +157,7 @@ abstract class setup_cmd extends admin_cmd
|
||||
if (!is_null(self::$egw_accounts_backup))
|
||||
{
|
||||
$GLOBALS['egw']->accounts = self::$egw_accounts_backup;
|
||||
$GLOBALS['egw']->accounts->cache_invalidate();
|
||||
unset(self::$egw_accounts_backup);
|
||||
}
|
||||
}
|
||||
|
@ -85,6 +85,8 @@ class setup_cmd_config extends setup_cmd
|
||||
|
||||
return lang('Configuration changed.');
|
||||
}
|
||||
$this->restore_db();
|
||||
|
||||
return lang('Nothing to change.');
|
||||
}
|
||||
|
||||
@ -165,6 +167,7 @@ class setup_cmd_config extends setup_cmd
|
||||
'--ldap-context' => 'ldap_context',
|
||||
'--ldap-search-filter' => 'ldap_search_filter',
|
||||
'--ldap-group-context' => 'ldap_group_context',
|
||||
'--allow-remote-admin' => 'allow_remote_admin',
|
||||
);
|
||||
|
||||
/**
|
||||
|
@ -94,6 +94,8 @@ class setup_cmd_install extends setup_cmd
|
||||
if ($this->verbose) echo lang('Installation started, this might take a few minutes ...')."\n";
|
||||
$setup_info = self::$egw_setup->process->pass($setup_info,'new',false,True,$this->config);
|
||||
|
||||
$this->restore_db();
|
||||
|
||||
return lang('Installation finished');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user