Skip to content

Commit de2879c

Browse files
author
Till Brehm
committed
Merge branch '6572-$issued_successfully' into 'develop'
Undefined variable $issued_successfully Closes #6572 See merge request ispconfig/ispconfig3!1801
2 parents 3a18fe7 + 2482e0e commit de2879c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/lib/installer_base.lib.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3051,6 +3051,8 @@ public function make_ispconfig_ssl_cert() {
30513051
$crt_issuer = exec("openssl x509 -in ".escapeshellarg($ssl_crt_file)." -inform PEM -noout -issuer");
30523052
}
30533053

3054+
$issued_successfully = false;
3055+
30543056
if ((@file_exists($ssl_crt_file) && ($crt_subject == $crt_issuer)) || (!@is_dir($acme_cert_dir) || !@file_exists($check_acme_file) || !@file_exists($ssl_crt_file) || md5_file($check_acme_file) != md5_file($ssl_crt_file)) && $ip_address_match == true) {
30553057

30563058
// This script is needed earlier to check and open http port 80 or standalone might fail
@@ -3149,8 +3151,6 @@ public function make_ispconfig_ssl_cert() {
31493151
}
31503152
}
31513153

3152-
$issued_successfully = false;
3153-
31543154
// Backup existing ispserver ssl files
31553155
//
31563156
// We may find valid or broken symlinks or actual files here.

0 commit comments

Comments
 (0)