Bug 20362: Direct link to authority records missing in staff detail view (1xx , 7xx)
[koha-ffzg.git] / catalogue / export.pl
index f12cd57..3785116 100755 (executable)
@@ -2,11 +2,11 @@
 use Modern::Perl;
 
 use C4::Record;
-use C4::Auth;
+use C4::Auth qw( get_template_and_user );
 use C4::Output;
-use C4::Biblio;
+use C4::Biblio qw( GetMarcBiblio GetMarcControlnumber );
 use CGI qw ( -utf8 );
-use C4::Ris;
+use C4::Ris qw( marc2ris );
 
 
 
@@ -16,7 +16,6 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
     query           => $query,
     type            => "intranet",
     flagsrequired   => { catalogue => 1 },
-    debug           => 1,
     });
 
 my $op=$query->param("op");