summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--loleaflet/src/core/Socket.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/loleaflet/src/core/Socket.js b/loleaflet/src/core/Socket.js
index edb1c2435..43a1ac752 100644
--- a/loleaflet/src/core/Socket.js
+++ b/loleaflet/src/core/Socket.js
@@ -608,12 +608,12 @@ L.Socket = L.Class.extend({
textMsg = textMsg.replace(/{connections}/g, command.params[1]);
textMsg = textMsg.replace(/{productname}/g, (typeof brandProductName !== 'undefined' ?
brandProductName : 'LibreOffice Online'));
- brandProductFAQURL = (typeof brandProductFAQURL !== 'undefined') ?
+ var brandFAQURL = (typeof brandProductFAQURL !== 'undefined') ?
brandProductFAQURL : 'https://hub.libreoffice.org/professional-online-support';
this._map.fire('infobar',
{
msg: textMsg,
- action: brandProductFAQURL,
+ action: brandFAQURL,
actionLabel: errorMessages.infoandsupport
});
}