MGR: convert HTML "&lt;" to "<" in project description (needed for ABC@home)

This commit is contained in:
Charlie Fenton 2013-10-23 04:36:33 -07:00
parent 77a2815285
commit a3e8fc49bc
1 changed files with 1 additions and 0 deletions

View File

@ -494,6 +494,7 @@ void CProjectInfoPage::OnProjectSelected( wxCommandEvent& WXUNUSED(event) ) {
// Change all occurrences of "<sup>n</sup>" to "^n"
desc.Replace(wxT("<sup>"), wxT("^"), true);
desc.Replace(wxT("</sup>"), wxT(""), true);
desc.Replace(wxT("&lt;"), wxT("<"), true);
m_pProjectDetailsDescriptionCtrl->SetValue(desc);
m_pProjectDetailsURLCtrl->SetLabel(strURL);