Merge branch 'fix/ehorus-password' into 'develop'
Decode entities in the eHorus password. See merge request artica/pandorafms!1972
This commit is contained in:
commit
d7db1e95e4
|
@ -53,7 +53,7 @@ if (empty($ehorus_agent_id)) {
|
||||||
$hostname = $config['ehorus_hostname'];
|
$hostname = $config['ehorus_hostname'];
|
||||||
$port = $config['ehorus_port'];
|
$port = $config['ehorus_port'];
|
||||||
$user = $config['ehorus_user'];
|
$user = $config['ehorus_user'];
|
||||||
$password = io_output_password($config['ehorus_pass']);
|
$password = io_safe_output(io_output_password($config['ehorus_pass']));
|
||||||
$curl_timeout = $config['ehorus_req_timeout'];
|
$curl_timeout = $config['ehorus_req_timeout'];
|
||||||
|
|
||||||
$base_url = 'https://' . $hostname . ':' . $port;
|
$base_url = 'https://' . $hostname . ':' . $port;
|
||||||
|
@ -315,4 +315,4 @@ $client_url = $config['homeurl'] . 'operation/agentes/ehorus_client.php?' . $que
|
||||||
|
|
||||||
$('input#run-ehorus-client').click(handleButtonClick);
|
$('input#run-ehorus-client').click(handleButtonClick);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue