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