Bernd Wurst commited on 2015-12-25 11:29:14
Zeige 2 geänderte Dateien mit 5 Einfügungen und 1 Löschungen.
... | ... |
@@ -106,6 +106,10 @@ if (count($vhosts) > 0) |
106 | 106 |
{ |
107 | 107 |
output("<td>".icon_disabled('SSL ausgeschaltet')."</td>"); |
108 | 108 |
} |
109 |
+ elseif (strstr($vhost['options'], "letsencrypt") && $vhost['cert']) |
|
110 |
+ { |
|
111 |
+ output("<td>".other_icon("letsencrypt.png", "Automatische Zertifikatsverwaltung mit Let's Encrypt")."</td>"); |
|
112 |
+ } |
|
109 | 113 |
elseif ($vhost['cert']) |
110 | 114 |
{ |
111 | 115 |
output("<td>".other_icon("secure.png", "SSL mit eigenem Zertifikat")."</td>"); |
... | ... |
@@ -113,7 +117,7 @@ if (count($vhosts) > 0) |
113 | 117 |
elseif (strstr($vhost['options'], "letsencrypt")) { |
114 | 118 |
// Letsencrypt gewählt aber noch nicht aktiv |
115 | 119 |
$message = "Let's Encrypt-Zertifikat ist noch nicht bereit"; |
116 |
- output("<td>".other_icon("secure.png", $message).icon_warning($message)."</td>"); |
|
120 |
+ output("<td>".other_icon("letsencrypt.png", $message).icon_warning($message)."</td>"); |
|
117 | 121 |
} |
118 | 122 |
else |
119 | 123 |
{ |
120 | 124 |