From: lpsolit%gmail.com <> Date: Mon, 3 Jul 2006 16:08:43 +0000 (+0000) Subject: Bug 343294: Update notification does not work through an HTTP proxy - Patch by Cedric... X-Git-Tag: bugzilla-2.23.2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=085a4fb5da54ab0031ee44a98f50ccde0a10852d;p=thirdparty%2Fbugzilla.git Bug 343294: Update notification does not work through an HTTP proxy - Patch by Cedric Caron r=LpSolit a=justdave --- diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm index 31cb2cac06..5d676b4607 100644 --- a/Bugzilla/Update.pm +++ b/Bugzilla/Update.pm @@ -132,6 +132,7 @@ sub _synchronize_data { my $ua = LWP::UserAgent->new(); $ua->timeout(TIMEOUT); $ua->protocols_allowed(['http', 'https']); + $ua->env_proxy; $ua->mirror(REMOTE_FILE, $local_file); # $ua->mirror() forces the modification time of the local XML file