movieinfo.cp add new line and line feed fix for 699d79c370

Origin commit data
------------------
Branch: ni/coolstream
Commit: bf19930887
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-03-21 (Sat, 21 Mar 2015)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2015-03-21 10:17:25 +01:00
parent 4ba11a0db3
commit 4f9a3f0765

View File

@@ -619,6 +619,8 @@ std::string decodeXmlSpecialChars(std::string s)
strReplace(s,"&amp;","&");
strReplace(s,"&quot;","\"");
strReplace(s,"&apos;","\'");
strReplace(s,"&#x0a;","\n'");
strReplace(s,"&#x0d;","\n'");
return s;
}