summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla.pm b/Bugzilla.pm
index cbc9ec1ec..8928ff8b0 100644
--- a/Bugzilla.pm
+++ b/Bugzilla.pm
@@ -268,10 +268,10 @@ sub input_params {
return $cache->{input_params};
}
+our $_localconfig;
sub localconfig {
- my $class = shift;
- $class->request_cache->{localconfig} ||= read_localconfig();
- return $class->request_cache->{localconfig};
+ $_localconfig ||= read_localconfig();
+ return $_localconfig;
}
sub params {