mirror of https://github.com/itflow-org/itflow
Merge pull request #876 from wrongecho/cert-pull-details-fix
Bugfix: Unable to update certificate details
This commit is contained in:
commit
4e2f107d4c
|
|
@ -9,10 +9,10 @@ function fetchSSL(type)
|
||||||
|
|
||||||
}
|
}
|
||||||
if (type == 'edit') {
|
if (type == 'edit') {
|
||||||
var domain = document.getElementById("editDomain").value;
|
var domain = document.getElementById("editCertificateDomain").value;
|
||||||
var issuedBy = document.getElementById("editIssuedBy");
|
var issuedBy = document.getElementById("editCertificateIssuedBy");
|
||||||
var expire = document.getElementById("editExpire");
|
var expire = document.getElementById("editCertificateExpire");
|
||||||
var publicKey = document.getElementById("editPublicKey");
|
var publicKey = document.getElementById("editCertificatePublicKey");
|
||||||
}
|
}
|
||||||
|
|
||||||
//Send a GET request to post.php as post.php?certificate_fetch_parse_json_details=TRUE&domain=DOMAIN
|
//Send a GET request to post.php as post.php?certificate_fetch_parse_json_details=TRUE&domain=DOMAIN
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue