mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-27 23:54:18 +02:00
fix(powershell): double-quote escape (#2828)
This commit is contained in:
parent
c077ad700a
commit
e8beda2186
@ -29,7 +29,7 @@ sub escape_jsonstring {
|
|||||||
my $ps = q{
|
my $ps = q{
|
||||||
function Escape-JSONString($str) {
|
function Escape-JSONString($str) {
|
||||||
if ($str -eq $null) {return ""}
|
if ($str -eq $null) {return ""}
|
||||||
$str = $str.ToString().Replace('"','\"').Replace('\\','\\\\').Replace("`n",'\n').Replace("`r",'\r').Replace("`t",'\t')
|
$str = $str.ToString().Replace('\\','\\\\').Replace('"','\"').Replace("`n",'\n').Replace("`r",'\r').Replace("`t",'\t')
|
||||||
return $str;
|
return $str;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user