From 8880080d231dea2d1c3d6ce00b1dd5146c00858d Mon Sep 17 00:00:00 2001 From: Lars Kneschke Date: Fri, 16 Dec 2005 07:10:42 +0000 Subject: [PATCH] use negative groupid --- setup/ldapexport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/ldapexport.php b/setup/ldapexport.php index f8a8ba12df..a8aa1cdcf7 100644 --- a/setup/ldapexport.php +++ b/setup/ldapexport.php @@ -97,7 +97,7 @@ while($GLOBALS['egw_setup']->db->next_record()) { $i = $GLOBALS['egw_setup']->db->f('account_id'); - $group_info[$i]['account_id'] = $GLOBALS['egw_setup']->db->f('account_id'); + $group_info[$i]['account_id'] = -$GLOBALS['egw_setup']->db->f('account_id'); $group_info[$i]['account_lid'] = $GLOBALS['egw_setup']->db->f('account_lid'); $group_info[$i]['account_firstname'] = $GLOBALS['egw_setup']->db->f('account_firstname'); $group_info[$i]['account_lastname'] = $GLOBALS['egw_setup']->db->f('account_lastname');