aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js')
-rw-r--r--server/sonar-web/src/main/js/libs/application.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/libs/application.js b/server/sonar-web/src/main/js/libs/application.js
index 95e2b9685d5..c0202aa1bee 100644
--- a/server/sonar-web/src/main/js/libs/application.js
+++ b/server/sonar-web/src/main/js/libs/application.js
@@ -28,7 +28,7 @@
* @param {string} message
*/
window.showMessage = function (id, message) {
- jQuery('#' + id + 'msg').html(message);
+ jQuery('#' + id + 'msg').text(message);
jQuery('#' + id).removeClass('hidden');
jQuery('#messages-panel').removeClass('hidden');
};