fix quote minify not escaping redirect operators
This commit is contained in:
parent
1f75f18fba
commit
a02edd6c2c
1 changed files with 2 additions and 2 deletions
|
|
@ -69,8 +69,8 @@ bool r_replace_var(_obj* in, strmap_t* varmap)
|
|||
return true;
|
||||
}
|
||||
|
||||
const char* escaped_char=" \\\t!\"()|&*?~";
|
||||
const char* doublequote_escape_char=" \t'|&\\*?~";
|
||||
const char* escaped_char=" \\\t!\"()|&*?~><";
|
||||
const char* doublequote_escape_char=" \t'|&\\*?~><";
|
||||
uint32_t count_escape_chars(std::string const& in, bool doublequote)
|
||||
{
|
||||
uint32_t r=0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue