Module: nagvis Branch: master Commit: 2612564726e97da634a661b138bdb17b8a63fd73 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=2612564726e97da634a661b138bdb17b8a63fd73
Author: LaMi <[email protected]> Date: Fri Mar 5 18:58:49 2010 +0100 Fixed umlaut problem in frontend messages --- share/frontend/nagvis-js/js/frontendMessage.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/share/frontend/nagvis-js/js/frontendMessage.js b/share/frontend/nagvis-js/js/frontendMessage.js index 1627912..25496a2 100644 --- a/share/frontend/nagvis-js/js/frontendMessage.js +++ b/share/frontend/nagvis-js/js/frontendMessage.js @@ -149,7 +149,7 @@ function frontendMessage(oMessage, iTimeout) { oCell.colSpan = '3'; oCell.style.paddingTop = '16px'; oCell.style.height = '202px'; - oCell.appendChild(document.createTextNode(oMessage.message)); + oCell.innerHTML = oMessage.message oRow.appendChild(oCell); oCell = null; ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
