diff options
author | lpsolit%gmail.com <> | 2006-07-03 18:08:43 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-07-03 18:08:43 +0200 |
commit | 085a4fb5da54ab0031ee44a98f50ccde0a10852d (patch) | |
tree | 9e7e103fecfa2d57bbd2fcf914cf3101d971f2d1 | |
parent | 3d317ca092cec05ad9dcdd3815d74bedbd9f3412 (diff) | |
download | bugzilla-085a4fb5da54ab0031ee44a98f50ccde0a10852d.tar.gz bugzilla-085a4fb5da54ab0031ee44a98f50ccde0a10852d.tar.xz |
Bug 343294: Update notification does not work through an HTTP proxy - Patch by Cedric Caron <cedric.caron@citycable.ch> r=LpSolit a=justdave
-rw-r--r-- | Bugzilla/Update.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm index 31cb2cac0..5d676b460 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 |