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