mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-25 23:00:21 +01:00
2016-07-13 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the 'RDCart::GetXmlValue()' method that caused XML field values not to be unescaped correctly.
This commit is contained in:
@@ -15291,4 +15291,6 @@
|
||||
* Implemented storage of RDXML data structures within a 'rdxl'
|
||||
user defined information frame in ID3 tags 'lib/rdwavefile.cpp' and
|
||||
'lib/rdaudio_convert.cpp'.
|
||||
|
||||
2016-07-13 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in the 'RDCart::GetXmlValue()' method that caused
|
||||
XML field values not to be unescaped correctly.
|
||||
|
||||
@@ -1917,7 +1917,7 @@ QVariant RDCart::GetXmlValue(const QString &tag,const QString &line)
|
||||
return QVariant(value.toInt());
|
||||
}
|
||||
|
||||
return QVariant(value);
|
||||
return QVariant(RDXmlUnescape(value));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user