From b4f9ca2fe880dd11dfe030b5ccd77c2747dba784 Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Mon, 14 Jan 2013 16:45:59 -0500 Subject: Bug 829601 - Bugzilla::local_timezone should be stored in process_cache instead of request_cache --- Bugzilla.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla.pm') diff --git a/Bugzilla.pm b/Bugzilla.pm index efef052be..28098cb65 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -605,7 +605,7 @@ sub has_flags { } sub local_timezone { - return $_[0]->request_cache->{local_timezone} + return $_[0]->process_cache->{local_timezone} ||= DateTime::TimeZone->new(name => 'local'); } -- cgit v1.2.3-24-g4f1b