From 2815b751056a604ecff6dfc6e7a94c6db750cfb2 Mon Sep 17 00:00:00 2001 From: "Danilo G. Baio (dbaio)" Date: Thu, 24 Jan 2013 22:45:36 -0200 Subject: Fix creation of acl noauth --- config/squid/squid.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'config') diff --git a/config/squid/squid.inc b/config/squid/squid.inc index 54e87c1a..6decbfb6 100644 --- a/config/squid/squid.inc +++ b/config/squid/squid.inc @@ -1041,9 +1041,12 @@ function squid_resync_auth() { $conf .= "http_access allow $acl\n"; } else { - $noauth = implode(' ', explode("\n", base64_decode($settings['no_auth_hosts']))); + $noauth = base64_decode($settings['no_auth_hosts']); if (!empty($noauth)) { - $conf .= "acl noauth src $noauth\n"; + foreach (explode("\n", $noauth) as $host) { + $host = trim($host); + $conf .= "acl noauth src $host\n"; + } $valid_acls[] = 'noauth'; } -- cgit v1.2.3