Fix to never escape spaces

This commit is contained in:
iliajie
2023-02-05 02:37:37 +02:00
parent 088e3a1c19
commit e7f1da486d

View File

@@ -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;
}