Add Security::remove_XSS

pull/3859/head
Julio Montoya 4 years ago
parent c0bcbc382a
commit 025577a541
  1. 6
      main/inc/lib/nusoap/class.wsdl.php

@ -855,13 +855,13 @@ class wsdl extends nusoap_base
<a href='#' onclick='popout()'><font color='#ffffff'>Close</font></a><br><br>"; <a href='#' onclick='popout()'><font color='#ffffff'>Close</font></a><br><br>";
foreach($data as $donnie => $marie){ // loop through opdata foreach($data as $donnie => $marie){ // loop through opdata
if($donnie == 'input' || $donnie == 'output'){ // show input/output data if($donnie == 'input' || $donnie == 'output'){ // show input/output data
$b .= "<font color='white'>".ucfirst($donnie).':</font><br>'; $b .= Security::remove_XSS("<font color='white'>".ucfirst($donnie).':</font><br>');
foreach($marie as $captain => $tenille){ // loop through data foreach($marie as $captain => $tenille){ // loop through data
if($captain == 'parts'){ // loop thru parts if($captain == 'parts'){ // loop thru parts
$b .= "&nbsp;&nbsp;$captain:<br>"; $b .= "&nbsp;&nbsp;$captain:<br>";
//if(is_array($tenille)){ //if(is_array($tenille)){
foreach($tenille as $joanie => $chachi){ foreach($tenille as $joanie => $chachi){
$b .= "&nbsp;&nbsp;&nbsp;&nbsp;$joanie: $chachi<br>"; $b .= Security::remove_XSS("&nbsp;&nbsp;&nbsp;&nbsp;$joanie: $chachi<br>");
} }
//} //}
} else { } else {
@ -869,7 +869,7 @@ class wsdl extends nusoap_base
} }
} }
} else { } else {
$b .= "<font color='white'>".ucfirst($donnie).":</font> $marie<br>"; $b .= Security::remove_XSS("<font color='white'>".ucfirst($donnie).":</font> $marie<br>");
} }
} }
$b .= '</div>'; $b .= '</div>';

Loading…
Cancel
Save