Skip to content

Commit

Permalink
System: v23.0.01 post-post-release fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SKuipers committed Feb 16, 2022
1 parent 2c64c36 commit 1c7fde3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/Adapter/AuthenticationAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ protected function updateUserData($userData)
}

// Update user language, using login option, then personal language, then system default
$languageSelected = !empty($_POST['gibboni18nID'] && $_POST['gibboni18nID'] != $this->session->get('i18n')['gibboni18nID'])
$languageSelected = !empty($_POST['gibboni18nID']) && $_POST['gibboni18nID'] != $this->session->get('i18n')['gibboni18nID']
? $_POST['gibboni18nID'] :
$userData['gibboni18nIDPersonal'] ?? null;

Expand Down

0 comments on commit 1c7fde3

Please sign in to comment.