You are not logged in.
Between 10.0.6 and 10.0.10 the custom handler is not working anymore for custom protocols. We had an application that does steps according to the data in the external links.
Last edited by Rafumel1774 (2023-09-27 12:25:57)
Offline
Caused by the change in: /src/Toolbox/URL.php
After changing in Link.php
if (!$replace_IP && !$replace_MAC) {
if ($safe_url) {
$link = URL::sanitizeURL($link) ?: '#';
}
return [$link];
to
if (!$replace_IP && !$replace_MAC) {
if ($safe_url) {
$link = $link;
#$link = URL::sanitizeURL($link) ?: '#';
}
return [$link];
It works again. However this can be DANGEROUS as this may causes security issues! Do it on your own risk - required for me for production use.
Last edited by Rafumel1774 (2023-09-27 13:03:51)
Offline