[followup](bug #4055) fix backport error
[koha.git] / mainpage.pl
index 0c0c5d6..8116eeb 100755 (executable)
 #
 
 use strict;
-require Exporter;
 
-use C4::Output;    # contains gettemplate
-use C4::Interface::CGI::Output;
 use CGI;
+use C4::Output;
 use C4::Auth;
 use C4::AuthoritiesMarc;
 use C4::Koha;
@@ -30,8 +28,10 @@ my $query     = new CGI;
 my $authtypes = getauthtypes;
 my @authtypesloop;
 
-foreach my $thisauthtype ( sort { $authtypes->{$a} <=> $authtypes->{$b} }
-    keys %$authtypes )
+foreach my $thisauthtype (
+    sort { $authtypes->{$a} <=> $authtypes->{$b} }
+    keys %$authtypes
+  )
 {
     my %row = (
         value        => $thisauthtype,
@@ -47,9 +47,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
         type            => "intranet",
         authnotrequired => 0,
         flagsrequired   => {
-        catalogue        => 1,
-        circulate        => 1,
-        borrowers        => 1,
+            catalogue => 1,
         },
     }
 );
@@ -61,7 +59,7 @@ $template->param(
     authtypesloop => \@authtypesloop
 );
 
-my $all_koha_news = &GetNewsToDisplay("koha");
+my $all_koha_news   = &GetNewsToDisplay("koha");
 my $koha_news_count = scalar @$all_koha_news;
 
 $template->param(