Skip to content

Commit

Permalink
Fix casee of import
Browse files Browse the repository at this point in the history
  • Loading branch information
TitusKirch committed Oct 20, 2023
1 parent 70b4935 commit bc97833
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Http/Controllers/PortalsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ public function importUsers(Request $request)
if(!in_array($abbreviation, ['INF', 'ET', 'WI', 'DIB', 'MCD'])) {
if($abbreviation == 'SBE') {
$abbreviation = 'ET';
} else if($abbreviation == 'ET-Master') {
} else if($abbreviation == 'ET-MASTER') {
$abbreviation = 'ET';
} else if($abbreviation == 'ISE-Master') {
} else if($abbreviation == 'ISE-MASTER') {
$abbreviation = 'INF';
} else {
$abbreviation = 'INF';
Expand Down

0 comments on commit bc97833

Please sign in to comment.