movieinfo.cp add new line and line feed fix for 74948a761e

Origin commit data
------------------
Commit: bf19930887
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-03-21 (Sat, 21 Mar 2015)
This commit is contained in:
Jacek Jendrzej
2015-03-21 10:17:25 +01:00
parent 3f53a4b636
commit 0d5cf974c8

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;
}