fixed typo, causing the account_repository not to be read and therefor displays the wrong conversation direction

This commit is contained in:
Ralf Becker 2007-06-13 07:59:42 +00:00
parent ca35060490
commit ee5bc9f0e7

View File

@ -68,7 +68,7 @@ if (!is_object($GLOBALS['egw_setup']->db))
}
// Load configuration values account_repository and auth_type, a setup has not yet done so
$GLOBALS['egw_setup']->db->select($GLOBALS['egw_setup']->config_table,'config_name,config_value',
array('config_name'=>array('account_respository','auth_type')),__LINE__,__FILE__);
array('config_name'=>array('account_repository','auth_type')),__LINE__,__FILE__);
while(($row = $GLOBALS['egw_setup']->db->row(true)))
{
$GLOBALS['egw_info']['server'][$row['config_name']] = $row['config_value'];