FSN#34495 res_ruimte moet naar zijn meervoud heten. Ook null-values ondersteunen in de (documentatie) xml

svn path=/Website/trunk/; revision=27364
This commit is contained in:
Jos Groot Lipman
2015-12-09 13:58:04 +00:00
parent cea46e330a
commit a0d2ad5e5d
2 changed files with 1 additions and 1 deletions

View File

@@ -735,7 +735,7 @@ var simple_json2xml = (function (undefined) {
} else if (value instanceof Object && type == 'object') {
xml += tag(i) + simple_json2xml(value) + tag(i, 1);
} else {
xml += tag(i) + Server.HTMLEncode(value) + tag(i, 1);
xml += tag(i) + (value===null?"":Server.HTMLEncode(value)) + tag(i, 1);
}
}
}