From 60037e00aa22987957480b44e2a2e721a412ba2d Mon Sep 17 00:00:00 2001 From: bcyrill Date: Fri, 1 Feb 2013 22:18:21 +0100 Subject: Update usr/local/www/system_gateways_edit.php Correct IP family mix-up. --- usr/local/www/system_gateways_edit.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/local/www/system_gateways_edit.php b/usr/local/www/system_gateways_edit.php index de11cfc..f040520 100755 --- a/usr/local/www/system_gateways_edit.php +++ b/usr/local/www/system_gateways_edit.php @@ -117,7 +117,7 @@ if ($_POST) { $parent_ip = get_interface_ip($_POST['interface']); $parent_sn = get_interface_subnet($_POST['interface']); if(empty($parent_ip) || empty($parent_sn)) { - $input_errors[] = gettext("You can not use a IPv6 Gateway Address on a IPv4 only interface."); + $input_errors[] = gettext("You can not use a IPv4 Gateway Address on a IPv6 only interface."); } else { $subnet = gen_subnet($parent_ip, $parent_sn) . "/" . $parent_sn; if(!ip_in_subnet($_POST['gateway'], $subnet)) @@ -130,7 +130,7 @@ if ($_POST) { $parent_ip = get_interface_ipv6($_POST['interface']); $parent_sn = get_interface_subnetv6($_POST['interface']); if(empty($parent_ip) || empty($parent_sn)) { - $input_errors[] = gettext("You can not use a IPv4 Gateway Address on a IPv6 only interface."); + $input_errors[] = gettext("You can not use a IPv6 Gateway Address on a IPv4 only interface."); } else { $subnet = gen_subnetv6($parent_ip, $parent_sn) . "/" . $parent_sn; if(!ip_in_subnet($_POST['gateway'], $subnet)) @@ -637,4 +637,4 @@ function monitor_change() { monitor_change(); - \ No newline at end of file + -- cgit v1.1