diff options
Diffstat (limited to 'config.cgi')
-rwxr-xr-x | config.cgi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.cgi b/config.cgi index c229dacd6..282b95957 100755 --- a/config.cgi +++ b/config.cgi @@ -46,6 +46,9 @@ if (Bugzilla->params->{'requirelogin'} && !$user->id) { display_data(); } +# Get data from the shadow DB as they don't change very often. +Bugzilla->switch_to_shadow_db; + # Pass a bunch of Bugzilla configuration to the templates. my $vars = {}; $vars->{'priority'} = get_legal_field_values('priority'); |