[DE] Fix Bug 33117.

This commit is contained in:
Julia Radzhabova 2016-09-15 16:29:34 +03:00
parent d0216389f5
commit 89e6d51ddc

View file

@ -201,7 +201,7 @@ define([
if (typeof value == 'object') {
_.each(value, function(obj) {
if (typeof obj === 'string')
changetext += (' ' + obj);
changetext += (' ' + Common.Utils.String.htmlEncode(obj));
else {
switch (obj) {
case 0:
@ -220,7 +220,7 @@ define([
}
})
} else if (typeof value === 'string') {
changetext += (' ' + value);
changetext += (' ' + Common.Utils.String.htmlEncode(value));
}
break;
case Asc.c_oAscRevisionsChangeType.TextRem:
@ -228,7 +228,7 @@ define([
if (typeof value == 'object') {
_.each(value, function(obj) {
if (typeof obj === 'string')
changetext += (' ' + obj);
changetext += (' ' + Common.Utils.String.htmlEncode(obj));
else {
switch (obj) {
case 0:
@ -247,7 +247,7 @@ define([
}
})
} else if (typeof value === 'string') {
changetext += (' ' + value);
changetext += (' ' + Common.Utils.String.htmlEncode(value));
}
break;
case Asc.c_oAscRevisionsChangeType.ParaAdd: