| 
      
            Lines 51-57
          unless (@installed_plugins) {
      
      
        Link Here
      
     | 
  
        
          | 51 | 
              my $plugins_dir = C4::Context->config("pluginsdir"); | 
          51 | 
              my $plugins_dir = C4::Context->config("pluginsdir"); | 
        
        
          | 52 | 
              if ( ref($plugins_dir) eq 'ARRAY' ) { | 
          52 | 
              if ( ref($plugins_dir) eq 'ARRAY' ) { | 
        
        
          | 53 | 
                  print "No plugins found\n";  | 
          53 | 
                  print "No plugins found\n";  | 
        
          
            
              | 54 | 
                      print "pluginsdir contains: \n" . join( '\n', @{$plugins_dir} ); | 
              54 | 
                      print "pluginsdir contains: \n" . join( "\n", @{$plugins_dir} ) . "\n"; | 
            
        
          | 55 | 
              }  | 
          55 | 
              }  | 
        
        
          | 56 | 
              else { | 
          56 | 
              else { | 
        
        
          | 57 | 
                  print "No plugins found at $plugins_dir\n";  | 
          57 | 
                  print "No plugins found at $plugins_dir\n";  | 
        
            
              | 58 | 
              -   | 
               | 
               |