From 12b8046c0f04c78944e3b0f77914455b8691ec8b Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 27 Mar 2024 16:55:34 +0300 Subject: fix for a typo --- plugins/NewStory/src/templates.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/NewStory/src/templates.cpp b/plugins/NewStory/src/templates.cpp index 4212eda602..166a3de63c 100644 --- a/plugins/NewStory/src/templates.cpp +++ b/plugins/NewStory/src/templates.cpp @@ -66,10 +66,10 @@ static void AppendString(CMStringW &buf, const wchar_t *p) p++; } else if (*p == '\n') buf.Append(L"
"); + else if (*p == '\"') buf.Append(L"""); else if (*p == '&') buf.Append(L"&"); else if (*p == '>') buf.Append(L">"); else if (*p == '<') buf.Append(L"<"); - else if (*p == '&') buf.Append(L"""); else if (*p == '[') { p++; if (*p == 'c') { -- cgit v1.2.3