fix wrong error-message of non-existing ip/port combo when a ssl-ip/port exists but not checked when adding a domain

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p) 2013-10-27 16:53:14 +01:00
parent 9d5851e9be
commit 89877f7ff2

View File

@ -440,6 +440,9 @@ if($page == 'domains'
// Verify SSL-Ports
if (isset($_POST['ssl_ipandport']) && is_array($_POST['ssl_ipandport'])) {
foreach ($_POST['ssl_ipandport'] as $ssl_ipandport) {
if (trim($ssl_ipandport) == "") continue;
// fix if no ssl-ip/port is checked
if (trim($ssl_ipandport) < 1) continue;
$ssl_ipandport = intval($ssl_ipandport);
$ssl_ipandport_check = $db->query_first("SELECT `id`, `ip`, `port` FROM `" . TABLE_PANEL_IPSANDPORTS . "` WHERE `id` = '" . $db->escape($ssl_ipandport) . "' " . $additional_ip_condition);
if (!isset($ssl_ipandport_check['id'])