From 273e09dc132350114edf8e5dd4a650c6cd2aa228 Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Tue, 24 Sep 2013 16:54:13 +0100 Subject: [PATCH] Fixed extra spaces around URLs in messages. The HTML source is now human-unreadable though (all on one line). --- src/backend/generators.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/generators.h b/src/backend/generators.h index 93ad0658..9161f589 100644 --- a/src/backend/generators.h +++ b/src/backend/generators.h @@ -574,7 +574,7 @@ namespace boss { AppendScripts(body); - if (!doc.save_file(file.c_str(), "\t", pugi::format_default | pugi::format_no_declaration)) { + if (!doc.save_file(file.c_str(), "\t", pugi::format_default | pugi::format_no_declaration | pugi::format_raw)) { BOOST_LOG_TRIVIAL(error) << "Could not write BOSS report."; throw boss::error(boss::error::path_write_fail, boost::locale::translate("Could not write BOSS report.").str()); }