Revert "Escape to prevent command expansion"

This reverts commit 20f947e7e5.
This commit is contained in:
Ilia Rostovtsev
2020-10-07 20:48:20 +03:00
parent 20f947e7e5
commit b82bd80f42

View File

@@ -622,12 +622,7 @@ else {
sub escapestr
{
local $rv = $_[0];
# Prevent escaping query
$rv =~ s/'/''/g;
# Prevent escaping command
$rv =~ s/"/\\"/g;
return $rv;
}