mirror of
https://github.com/webmin/webmin.git
synced 2026-06-13 16:20:25 +01: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