diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-08-01 05:49:38 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-05 05:40:54 +0200 |
commit | 670029a8e7b0aa32fc6336caf29b65fcabe2829c (patch) | |
tree | e3e1bbc29b03bce59f135e34f5117a707670915b /Bugzilla/Quantum/Plugin | |
parent | 43837b61eaf9bc76adadbf8b515522bdb757c67b (diff) | |
download | bugzilla-670029a8e7b0aa32fc6336caf29b65fcabe2829c.tar.gz bugzilla-670029a8e7b0aa32fc6336caf29b65fcabe2829c.tar.xz |
Fix a module loading problem
Diffstat (limited to 'Bugzilla/Quantum/Plugin')
-rw-r--r-- | Bugzilla/Quantum/Plugin/Glue.pm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Bugzilla/Quantum/Plugin/Glue.pm b/Bugzilla/Quantum/Plugin/Glue.pm index ea21429bd..ded4daf15 100644 --- a/Bugzilla/Quantum/Plugin/Glue.pm +++ b/Bugzilla/Quantum/Plugin/Glue.pm @@ -67,13 +67,7 @@ sub register { } ); - Bugzilla::Extension->load_all(); - if ( $app->mode ne 'development' ) { - Bugzilla->preload_features(); - DEBUG('preloading templates'); - Bugzilla->preload_templates(); - DEBUG('done preloading templates'); - } + $app->secrets( [ Bugzilla->localconfig->{side_wide_secret} ] ); $app->renderer->add_handler( |