Skip to content

Commit

Permalink
LTI: Added HTML escaping in confirmation screen
Browse files Browse the repository at this point in the history
Added htmlspecialchars in ilLTIConsumerAdministrationGUI::confirmDeleteProviders
  • Loading branch information
ZallaxDev committed Dec 9, 2024
1 parent 08d7ad7 commit ba43e2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ protected function confirmDeleteProviders(array $providers, string $cancelComman
$confirmationGUI->addItem(
'provider_ids[]',
(string) $provider->getId(),
$provider->getTitle(),
htmlspecialchars($provider->getTitle()),
$providerIcon
);
}
Expand Down

0 comments on commit ba43e2c

Please sign in to comment.