Quellcode durchsuchen

Update UIAlert.js

Nariman Jelveh vor 1 Jahr
Ursprung
Commit
5538649125
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/UI/UIAlert.js

+ 1 - 1
src/UI/UIAlert.js

@@ -50,7 +50,7 @@ function UIAlert(options){
         // icon
         // icon
         h += `<img class="window-alert-icon" src="${html_encode(options.body_icon)}">`;
         h += `<img class="window-alert-icon" src="${html_encode(options.body_icon)}">`;
         // message
         // message
-        h += `<div class="window-alert-message">${options.message}</div>`;
+        h += `<div class="window-alert-message">${html_encode(options.message)}</div>`;
         // buttons
         // buttons
         if(options.buttons && options.buttons.length > 0){
         if(options.buttons && options.buttons.length > 0){
             h += `<div style="overflow:hidden; margin-top:20px;">`;
             h += `<div style="overflow:hidden; margin-top:20px;">`;