Bernd Wurst commited on 2015-12-01 11:23:58
Zeige 1 geänderte Dateien mit 6 Einfügungen und 1 Löschungen.
| ... | ... |
@@ -98,7 +98,12 @@ if (count($vhosts) > 0) |
| 98 | 98 |
} |
| 99 | 99 |
elseif ($vhost['cert']) |
| 100 | 100 |
{
|
| 101 |
- output("<td><img src=\"{$prefix}images/secure.png\" style=\"height: 16px; width: 16px;\" alt=\"cert\" title=\"SSL mit eigenem Zertifikat\" /></td>");
|
|
| 101 |
+ output("<td>".other_icon("secure.png", "SSL mit eigenem Zertifikat")."</td>");
|
|
| 102 |
+ } |
|
| 103 |
+ elseif (strstr($vhost['options'], "letsencrypt")) {
|
|
| 104 |
+ // Letsencrypt gewählt aber noch nicht aktiv |
|
| 105 |
+ $message = "Let's Encrypt-Zertifikat ist noch nicht bereit"; |
|
| 106 |
+ output("<td>".other_icon("secure.png", $message).icon_warning($message)."</td>");
|
|
| 102 | 107 |
} |
| 103 | 108 |
else |
| 104 | 109 |
{
|
| 105 | 110 |