Remove html encoded characters from the product name when returning the info using the API

This commit is contained in:
Alejandro Gallardo Escobar 2018-07-30 16:38:18 +02:00
parent 42ad2cc924
commit f4f298ebf9
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ switch($info) {
$config["MR"] = 0;
}
echo get_product_name() . ' ' . $pandora_version . ' - ' . $build_version . " MR" . $config["MR"];
echo io_safe_output(get_product_name()) . ' ' . $pandora_version . ' - ' . $build_version . " MR" . $config["MR"];
exit;
}