(fix) properly XML escape wide characters (fixes #3616)

This commit is contained in:
Ludovic Marcotte
2016-04-06 11:19:18 -04:00
parent 17ebfce2c7
commit 35d1cab856
9 changed files with 108 additions and 104 deletions
+1 -1
View File
@@ -2076,7 +2076,7 @@ static NSArray *childRecordFields = nil;
methodSel = SOGoSelectorForPropertyGetter (*currentProperty);
if (methodSel && [sogoObject respondsToSelector: methodSel])
*currentValue = [[sogoObject performSelector: methodSel]
stringByEscapingXMLString];
safeStringByEscapingXMLString];
currentProperty++;
currentValue++;
}