mirror of https://github.com/BOINC/boinc.git
MGR: convert HTML "<" to "<" in project description (needed for ABC@home)
This commit is contained in:
parent
77a2815285
commit
a3e8fc49bc
|
@ -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("<"), wxT("<"), true);
|
||||
|
||||
m_pProjectDetailsDescriptionCtrl->SetValue(desc);
|
||||
m_pProjectDetailsURLCtrl->SetLabel(strURL);
|
||||
|
|
Loading…
Reference in New Issue