File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -855,21 +855,21 @@ function popout(){ // Hides message
855855 <a href='#' onclick='popout()'><font color='#ffffff'>Close</font></a><br><br> " ;
856856 foreach ($ data as $ donnie => $ marie ){ // loop through opdata
857857 if ($ donnie == 'input ' || $ donnie == 'output ' ){ // show input/output data
858- $ b .= "<font color='white'> " .ucfirst ($ donnie ).':</font><br> ' ;
858+ $ b .= Security:: remove_XSS ( "<font color='white'> " .ucfirst ($ donnie ).':</font><br> ' ) ;
859859 foreach ($ marie as $ captain => $ tenille ){ // loop through data
860860 if ($ captain == 'parts ' ){ // loop thru parts
861861 $ b .= " $ captain:<br> " ;
862862 //if(is_array($tenille)){
863863 foreach ($ tenille as $ joanie => $ chachi ){
864- $ b .= " $ joanie: $ chachi<br> " ;
864+ $ b .= Security:: remove_XSS ( " $ joanie: $ chachi<br> " ) ;
865865 }
866866 //}
867867 } else {
868868 $ b .= " $ captain: $ tenille<br> " ;
869869 }
870870 }
871871 } else {
872- $ b .= "<font color='white'> " .ucfirst ($ donnie ).":</font> $ marie<br> " ;
872+ $ b .= Security:: remove_XSS ( "<font color='white'> " .ucfirst ($ donnie ).":</font> $ marie<br> " ) ;
873873 }
874874 }
875875 $ b .= '</div> ' ;
You can’t perform that action at this time.
0 commit comments