Merge pull request #31 from ONLYOFFICE/hotfix/v4.1.2
[DE] Fix Bug 33117.
This commit is contained in:
commit
02951be6c1
|
@ -201,7 +201,7 @@ define([
|
||||||
if (typeof value == 'object') {
|
if (typeof value == 'object') {
|
||||||
_.each(value, function(obj) {
|
_.each(value, function(obj) {
|
||||||
if (typeof obj === 'string')
|
if (typeof obj === 'string')
|
||||||
changetext += (' ' + obj);
|
changetext += (' ' + Common.Utils.String.htmlEncode(obj));
|
||||||
else {
|
else {
|
||||||
switch (obj) {
|
switch (obj) {
|
||||||
case 0:
|
case 0:
|
||||||
|
@ -220,7 +220,7 @@ define([
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else if (typeof value === 'string') {
|
} else if (typeof value === 'string') {
|
||||||
changetext += (' ' + value);
|
changetext += (' ' + Common.Utils.String.htmlEncode(value));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Asc.c_oAscRevisionsChangeType.TextRem:
|
case Asc.c_oAscRevisionsChangeType.TextRem:
|
||||||
|
@ -228,7 +228,7 @@ define([
|
||||||
if (typeof value == 'object') {
|
if (typeof value == 'object') {
|
||||||
_.each(value, function(obj) {
|
_.each(value, function(obj) {
|
||||||
if (typeof obj === 'string')
|
if (typeof obj === 'string')
|
||||||
changetext += (' ' + obj);
|
changetext += (' ' + Common.Utils.String.htmlEncode(obj));
|
||||||
else {
|
else {
|
||||||
switch (obj) {
|
switch (obj) {
|
||||||
case 0:
|
case 0:
|
||||||
|
@ -247,7 +247,7 @@ define([
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else if (typeof value === 'string') {
|
} else if (typeof value === 'string') {
|
||||||
changetext += (' ' + value);
|
changetext += (' ' + Common.Utils.String.htmlEncode(value));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Asc.c_oAscRevisionsChangeType.ParaAdd:
|
case Asc.c_oAscRevisionsChangeType.ParaAdd:
|
||||||
|
|
Loading…
Reference in a new issue