Removed unwanted safe input in a data display

This commit is contained in:
fermin831 2018-08-16 09:24:59 +02:00
parent 7ac2745b9e
commit a23dd89c70
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ if ($get_module_detail) {
else {
//Fixed the data from Selenium Plugin
if ($row[$attr[0]] != strip_tags($row[$attr[0]])) {
$data[] = html_print_result_div(io_safe_input($row[$attr[0]]));
$data[] = html_print_result_div($row[$attr[0]]);
}
else if (is_numeric($row[$attr[0]]) && !modules_is_string_type($row['module_type']) ) {
switch($row['module_type']) {