mirror of
https://github.com/webmin/webmin.git
synced 2026-03-20 16:50:24 +00:00
Fix to never escape spaces
This commit is contained in:
@@ -260,6 +260,9 @@ $tmp =~ s/>/>/g;
|
||||
$tmp =~ s/\"/"/g;
|
||||
$tmp =~ s/\'/'/g;
|
||||
$tmp =~ s/=/=/g;
|
||||
# Never escape spaces
|
||||
$tmp =~ s/ / /g;
|
||||
$tmp =~ s/ / /g;
|
||||
return $tmp;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user