Skip to content

Commit

Permalink
Fixed #6883 - remove escaping of fields on LDAP import
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed May 16, 2019
1 parent 33b59d7 commit 6728089
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/Console/Commands/LdapSync.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ public function handle()
$item["createorupdate"] = 'created';
}

$user->first_name = e($item["firstname"]);
$user->last_name = e($item["lastname"]);
$user->username = e($item["username"]);
$user->email = e($item["email"]);
$user->first_name = $item["firstname"];
$user->last_name = $item["lastname"];
$user->username = $item["username"];
$user->email = $item["email"];
$user->employee_num = e($item["employee_number"]);

// Sync activated state for Active Directory.
Expand Down

0 comments on commit 6728089

Please sign in to comment.