HandlerFeedGenerator: Don't escape title again

Este commit está contenido en:
Albert S. 2022-08-20 12:57:54 +02:00
padre 995a980d49
commit d3bd5f79cc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -85,7 +85,7 @@ std::string HandlerFeedGenerator::generateAtom(const std::vector<HandlerFeedGene
std::string entryurl =
this->urlProvider->combine({this->urlProvider->rootUrl(), this->urlProvider->page(page.name)});
TemplatePage atomentry = this->templ->getPage("feeds/atomentry");
atomentry.setVar("entrytitle", utils::html_xss(page.title));
atomentry.setVar("entrytitle", page.title);
atomentry.setVar("entryurl", utils::html_xss(entryurl));
atomentry.setVar("entryid", utils::html_xss(entryurl));
atomentry.setVar("entrypublished", entryPublished);