mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-01 11:07:53 +00:00
PageCompiler: fix backslash escaping
This commit is contained in:
@@ -179,6 +179,10 @@ void PageReader::parse(std::istream& pageStream)
|
||||
{
|
||||
_page.handler() << "\\\"";
|
||||
}
|
||||
else if (token == "\\")
|
||||
{
|
||||
_page.handler() << "\\\\";
|
||||
}
|
||||
else if (token != "\r")
|
||||
{
|
||||
_page.handler() << token;
|
||||
|
||||
Reference in New Issue
Block a user