Skip to content

Commit

Permalink
remove check for non control character in params parser
Browse files Browse the repository at this point in the history
  • Loading branch information
cvb committed Dec 3, 2012
1 parent b20425b commit 6ea9080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Snap/Internal/Parsing.hs
Expand Up @@ -161,7 +161,7 @@ pQuotedString = q *> quotedText <* q
, pure soFar' ] , pure soFar' ]


q = char '\"' q = char '\"'
qdtext = matchAll [ isRFCText, (/= '\"'), (/= '\\') ] qdtext = matchAll [ (/= '\"'), (/= '\\') ]




------------------------------------------------------------------------------ ------------------------------------------------------------------------------
Expand Down

0 comments on commit 6ea9080

Please sign in to comment.