diff options
-rw-r--r-- | Source/cmCTest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 439da02..f174ea6 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -702,7 +702,7 @@ int cmCTest::UpdateDirectory() << "\t\t\t<PreviousRevision>" << srevision2 << "</PreviousRevision>\n" << "\t\t\t<Author>" << sauthor1<< "</Author>\n" << "\t\t\t<Date>" << sdate1 << "</Date>\n" - << "\t\t\t<Comment>" << comment1 << "</Comment>\n" + << "\t\t\t<Comment>" << this->MakeXMLSafe(comment1) << "</Comment>\n" << "\t\t\t<Email>" << semail1 << "</Email>\n" << "\t\t</Revisions>\n" << "\t\t<Revisions>\n" @@ -710,7 +710,7 @@ int cmCTest::UpdateDirectory() << "\t\t\t<PreviousRevision>" << srevision2 << "</PreviousRevision>\n" << "\t\t\t<Author>" << sauthor2<< "</Author>\n" << "\t\t\t<Date>" << sdate2 << "</Date>\n" - << "\t\t\t<Comment>" << comment2 << "</Comment>\n" + << "\t\t\t<Comment>" << this->MakeXMLSafe(comment2) << "</Comment>\n" << "\t\t\t<Email>" << semail2 << "</Email>\n" << "\t\t</Revisions>" << std::endl; } |