Bug 20181: (QA follow-up) Remove double check
authorKyle M Hall <kyle@bywatetsolutions.com>
Thu, 29 Mar 2018 11:11:40 +0000 (07:11 -0400)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 6 Apr 2018 17:51:38 +0000 (14:51 -0300)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha/Template/Plugin/KohaPlugins.pm

index a6822ca691602243825f0f63859028b7be5f193c..0148c7f30159ae3f5ae0ab8643cf71a71c4d6b4d 100644 (file)
@@ -48,10 +48,13 @@ to output to the head section of opac pages.
 
 sub get_plugins_opac_head {
     return q{}
-      unless C4::Context->preference('UseKohaPlugins')
-      && C4::Context->config("enable_plugins");
+      unless C4::Context->preference('UseKohaPlugins');
 
-    my @plugins = Koha::Plugins->new()->GetPlugins(
+    my $p = Koha::Plugins->new();
+
+    return q{} unless $p;
+
+    my @plugins = $p->GetPlugins(
         {
             method => 'opac_head',
         }
@@ -73,10 +76,13 @@ to output to the javascript section of at the bottom of opac pages.
 
 sub get_plugins_opac_js {
     return q{}
-      unless C4::Context->preference('UseKohaPlugins')
-      && C4::Context->config("enable_plugins");
+      unless C4::Context->preference('UseKohaPlugins');
+
+    my $p = Koha::Plugins->new();
+
+    return q{} unless $p;
 
-    my @plugins = Koha::Plugins->new()->GetPlugins(
+    my @plugins = $p->GetPlugins(
         {
             method => 'opac_js',
         }