From 1c2a564c14d04c0d657fbfbf9f9c1686ab3abcf9 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 13 Dec 2007 23:42:17 +0000 Subject: [PATCH] fixed problem in setup, because of not instanciated account object --- setup/inc/class.setup.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/inc/class.setup.inc.php b/setup/inc/class.setup.inc.php index faf573b30d..a8809625e1 100644 --- a/setup/inc/class.setup.inc.php +++ b/setup/inc/class.setup.inc.php @@ -900,7 +900,7 @@ $GLOBALS['egw']->db = clone($this->db); $GLOBALS['egw']->common =& CreateObject('phpgwapi.common'); - $this->accounts = new accounts($config); + $GLOBALS['egw']->accounts = $this->accounts = new accounts($config); $this->accounts->cache_invalidate(); // the cache is shared for all instances of the class if(($GLOBALS['egw_info']['server']['account_repository'] == 'ldap') &&