Merge remote-tracking branch 'origin/support/3.0' into develop

# Conflicts:
#	pages/UI.php
#	tests/php-unit-tests/unitary-tests/application/utilsTest.php
This commit is contained in:
Eric Espie
2023-06-01 16:59:59 +02:00
5 changed files with 6 additions and 6 deletions

View File

@@ -811,7 +811,7 @@ try {
foreach ($aShortcutClasses as $cShortcutPlugin) {
foreach ($cShortcutPlugin::GetShortcutKeys() as $aShortcutKey) {
$sKey = utils::ReadParam($aShortcutKey['id'], $aShortcutKey['key'], true, 'raw_data');
$aShortcutPrefs[$aShortcutKey['id']] = strtolower($sKey);
$aShortcutPrefs[$aShortcutKey['id']] = strtolower(utils::HtmlEntities($sKey));
}
}
appUserPreferences::SetPref('keyboard_shortcuts', $aShortcutPrefs);