[SSE] Fix Bug 47544
This commit is contained in:
parent
2ceeaf34a5
commit
9125d3de78
|
@ -1085,7 +1085,7 @@ define([
|
||||||
if (linkstr) {
|
if (linkstr) {
|
||||||
linkstr = Common.Utils.String.htmlEncode(linkstr) + '<br><b>' + me.textCtrlClick + '</b>';
|
linkstr = Common.Utils.String.htmlEncode(linkstr) + '<br><b>' + me.textCtrlClick + '</b>';
|
||||||
} else {
|
} else {
|
||||||
linkstr = props.asc_getHyperlinkUrl() + '<br><b>' + me.textCtrlClick + '</b>';
|
linkstr = Common.Utils.String.htmlEncode(props.asc_getHyperlinkUrl()) + '<br><b>' + me.textCtrlClick + '</b>';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
linkstr = Common.Utils.String.htmlEncode(props.asc_getTooltip() || (props.asc_getLocation()));
|
linkstr = Common.Utils.String.htmlEncode(props.asc_getTooltip() || (props.asc_getLocation()));
|
||||||
|
|
Loading…
Reference in a new issue