diff options
author | mkanat%bugzilla.org <> | 2009-12-31 12:53:19 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-12-31 12:53:19 +0000 |
commit | 8d2b07ea05e895f040d1805221135bfb68dc7f7c (patch) | |
tree | 0e7abffa238bf380bd944971915c247773abd93a /Bugzilla/Error.pm | |
parent | Bug 520318: Add remove_from_db to Bugzilla:Group and use it to delete groups ... (diff) | |
download | bugzilla-8d2b07ea05e895f040d1805221135bfb68dc7f7c.tar.gz bugzilla-8d2b07ea05e895f040d1805221135bfb68dc7f7c.tar.bz2 bugzilla-8d2b07ea05e895f040d1805221135bfb68dc7f7c.zip |
Bug 527586: Use X-Forwarded-For instead of REMOTE_ADDR for trusted proxies
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
Diffstat (limited to 'Bugzilla/Error.pm')
-rw-r--r-- | Bugzilla/Error.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm index dbd9688a9..4e312b3ed 100644 --- a/Bugzilla/Error.pm +++ b/Bugzilla/Error.pm @@ -64,7 +64,7 @@ sub _throw_error { for (1..75) { $mesg .= "-"; }; $mesg .= "\n[$$] " . time2str("%D %H:%M:%S ", time()); $mesg .= "$name $error "; - $mesg .= "$ENV{REMOTE_ADDR} " if $ENV{REMOTE_ADDR}; + $mesg .= remote_ip(); $mesg .= Bugzilla->user->login; $mesg .= (' actually ' . Bugzilla->sudoer->login) if Bugzilla->sudoer; $mesg .= "\n"; |