From 9cc79abd31ecbe0b17faf09ab772c9d17b5c1996 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Mon, 14 Jan 2013 18:59:54 +0100 Subject: Bug 829601: Bugzilla->local_timezone should be stored in process_cache instead of request_cache r=glob a=LpSolit --- Bugzilla.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla.pm') diff --git a/Bugzilla.pm b/Bugzilla.pm index e06b67ead..985834876 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -596,7 +596,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