Bug 28672: Pass itemnumber instead of item object
[koha-ffzg.git] / authorities / detail.pl
index 0e7ba42..a954609 100755 (executable)
@@ -36,16 +36,13 @@ parameters tables.
 
 =cut
 
+use Modern::Perl;
 
-use strict;
-use warnings;
-
-use C4::AuthoritiesMarc;
-use C4::Auth;
+use C4::Auth qw( get_template_and_user );
+use C4::AuthoritiesMarc qw( GetAuthority GenerateHierarchy GetTagsLabels );
 use C4::Context;
-use C4::Output;
+use C4::Output qw( output_html_with_http_headers );
 use CGI qw ( -utf8 );
-use MARC::Record;
 use C4::Koha;
 use Koha::Authorities;
 
@@ -122,7 +119,8 @@ sub build_tabs {
                         my %subfield_data;
                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
                         if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
-                          $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
+                            $subfield_data{marc_value} = $subf[$i][1];
+                            $subfield_data{is_url} = 1;
                         } else {
                           $subfield_data{marc_value}=$subf[$i][1];
                         }
@@ -165,7 +163,7 @@ sub build_tabs {
 
 
 # 
-my $query=new CGI;
+my $query=CGI->new;
 
 my $dbh=C4::Context->dbh;
 
@@ -175,9 +173,7 @@ my ($template, $loggedinuser, $cookie) = get_template_and_user(
         template_name   => "authorities/detail.tt",
         query           => $query,
         type            => "intranet",
-        authnotrequired => 0,
         flagsrequired   => { catalogue => 1 },
-        debug           => 1,
     }
 );
 
@@ -185,7 +181,7 @@ my $authid = $query->param('authid');
 
 my $authobj = Koha::Authorities->find($authid);
 my $authtypecode = $authobj ? $authobj->authtypecode : q{};
-$tagslib = &GetTagsLabels(1,$authtypecode);
+$tagslib = GetTagsLabels(1,$authtypecode);
 
 # Build list of authtypes for showing them
 my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypetext']});