Merge branch 'ent-2394-fix-api-info-html-encoded-chars' into 'develop'

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

See merge request artica/pandorafms!1646
This commit is contained in:
vgilc 2018-08-01 15:13:51 +02:00
commit 6e2af64746
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ switch($info) {
$config["MR"] = 0; $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; exit;
} }