diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/squid/squid.inc | 2 | ||||
-rw-r--r-- | packages/squid3/squid.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/squid/squid.inc b/packages/squid/squid.inc index 9695ed85..b641dbd5 100644 --- a/packages/squid/squid.inc +++ b/packages/squid/squid.inc @@ -314,7 +314,7 @@ function squid_validate_general($post, $input_errors) { } if (($post['transparent_proxy'] != 'on') && ($post['private_subnet_proxy_off'] == 'on')) { - $input_errors[] = "You can not enable forwarding traffic to private subnets to the proxy server without using the transparent proxy."; + $input_errors[] = "You can not bypass traffic to private subnets without using the transparent proxy."; } if(!empty($post['dns_nameservers'])) { diff --git a/packages/squid3/squid.inc b/packages/squid3/squid.inc index 73c7cafb..3c42f92e 100644 --- a/packages/squid3/squid.inc +++ b/packages/squid3/squid.inc @@ -315,7 +315,7 @@ function squid_validate_general($post, $input_errors) { } if (($post['transparent_proxy'] != 'on') && ($post['private_subnet_proxy_off'] == 'on')) { - $input_errors[] = "You can not enable forwarding traffic to private subnets to the proxy server without using the transparent proxy."; + $input_errors[] = "You can not bypass traffic to private subnets without using the transparent proxy."; } if(!empty($post['dns_nameservers'])) { |