From dc69445754f5fec434677ead95b9a6f076386efb Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 1 Oct 2006 10:49:30 +0000 Subject: [PATCH] fixed typo, causing the account-migration to to migrate from SQL --> LDAP --- setup/account_migration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/account_migration.php b/setup/account_migration.php index ca9d2bf9e2..920cf04ce2 100644 --- a/setup/account_migration.php +++ b/setup/account_migration.php @@ -74,7 +74,7 @@ while(($row = $GLOBALS['egw_setup']->db->row(true))) $GLOBALS['egw_info']['server'][$row['config_name']] = $row['config_value']; } $to = $GLOBALS['egw_info']['server']['account_repository']; -if (!$to || !($to = $GLOBALS['egw_info']['server']['auth_type'])) +if (!$to && !($to = $GLOBALS['egw_info']['server']['auth_type'])) { $to = 'sql'; }