mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: Escape strings that will be in XML file
This commit is contained in:
parent
3f2b4f3a22
commit
06f08b1128
1 changed files with 3 additions and 3 deletions
|
@ -317,11 +317,11 @@ bool createShortcut(const QString &shortcut, const QString &name, const QString
|
|||
|
||||
CConfigFile *config = CConfigFile::getInstance();
|
||||
|
||||
// HTML escape values because they'll be in a XML file
|
||||
strings.clear();
|
||||
strings["NAME"] = name;
|
||||
strings["COPYRIGHT"] = config->getProductPublisher();
|
||||
strings["NAME"] = name.toHtmlEscaped();
|
||||
strings["COPYRIGHT"] = config->getProductPublisher().toHtmlEscaped();
|
||||
strings["VERSION"] = QApplication::applicationVersion();
|
||||
strings["IDENTIFIER"] = "com.winchgate.Ryzom-" + nameToId(name);
|
||||
|
||||
// write Info.plist
|
||||
if (!writeResourceWithTemplates(":/templates/Info.plist", plistFile, strings)) return false;
|
||||
|
|
Loading…
Reference in a new issue