Skip to content

Commit

Permalink
enh(powershell/updates): Substituion of special charactere for Fr, Es…
Browse files Browse the repository at this point in the history
…,… (#4872)
  • Loading branch information
Tpo76 authored and omercier committed May 28, 2024
1 parent f8c2dfb commit 5e64a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/centreon/common/powershell/windows/updates.pm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Try {
Foreach ($update in $updates) {
$item = @{
title = $update.Title;
title = $update.Title.Normalize([Text.NormalizationForm]::FormD) -replace "\p{M}", "" -replace "\p{Z}", " ";
isMandatory = $update.IsMandatory;
}
Expand Down

0 comments on commit 5e64a89

Please sign in to comment.