Skip to content
Snippets Groups Projects
Commit 1b039d0b authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix bug in html tag escaping

parent 46a77a8c
Branches test-lint
No related tags found
No related merge requests found
...@@ -387,12 +387,11 @@ utils::escapeBlacklistedHtml(const QString &rawStr) ...@@ -387,12 +387,11 @@ utils::escapeBlacklistedHtml(const QString &rawStr)
break; break;
} }
case '>': case '>':
if (escapingTag) if (escapingTag) {
buffer.append(">"); buffer.append(">");
else {
escapingTag = false; escapingTag = false;
} else
buffer.append('>'); buffer.append('>');
}
break; break;
default: default:
buffer.append(data.at(pos)); buffer.append(data.at(pos));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment