From 4a6520fc78a220aa9a62cb482f95136bedcd49fe Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 27 Aug 2025 13:30:07 +0100 Subject: [PATCH] Fixed address field Signed-off-by: snipe --- app/Console/Commands/LdapSync.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/LdapSync.php b/app/Console/Commands/LdapSync.php index 7ad4648702..381ae900d9 100644 --- a/app/Console/Commands/LdapSync.php +++ b/app/Console/Commands/LdapSync.php @@ -256,7 +256,7 @@ class LdapSync extends Command $item['telephone'] = $results[$i][$ldap_map["phone"]][0] ?? ''; $item['mobile'] = $results[$i][$ldap_map["mobile"]][0] ?? ''; $item['jobtitle'] = $results[$i][$ldap_map["jobtitle"]][0] ?? ''; - $item['address'] = $results[$i][$ldap_map["ldap_address"]][0] ?? ''; + $item['address'] = $results[$i][$ldap_map["address"]][0] ?? ''; $item['city'] = $results[$i][$ldap_map["city"]][0] ?? ''; $item['state'] = $results[$i][$ldap_map["state"]][0] ?? ''; $item['country'] = $results[$i][$ldap_map["country"]][0] ?? '';