tbrehm
2013-04-19 c54f542fb4c59c1b390809f4d018fc4bd947d02e
Fixed path in dkim ajax request.
1 files modified
2 ■■■ changed files
interface/web/mail/templates/mail_domain_edit.htm 2 ●●● patch | view | raw | blame | history
interface/web/mail/templates/mail_domain_edit.htm
@@ -105,7 +105,7 @@
                        alert("Error creating XMLHTTP-instance");
                        return false;
                } else {
                        request.open('POST', '/mail/mail_domain_dkim_create.php', true);
                        request.open('POST', 'mail/mail_domain_dkim_create.php', true);
                        request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
                        request.send('domain='+value+'&action='+action+'&pkey='+privatekey);
                        request.onreadystatechange = interpretRequest;