minor bug in action.confirm.php on line 46
Code: Select all
$url = str_replace('http:','https:',$gCms->config['root_url']).$_SERVER['REQUEST_URI'];
A location of http://localhost/cms/index.php?mact=Orders... is changed to https://localhost/cms/cms/index.php?mact=Orders...
Please update line to
Code: Select all
$url = str_replace('http:','https:',$gCms->config['root_url']).
substr($_SERVER['REQUEST_URI'], stripos($_SERVER['REQUEST_URI'], '/index.php'));