Bug 13695: Add ISBD export option for the OPAC cart and lists
[srvgit] / opac / opac-review.pl
index 16ed56a..948d5e5 100755 (executable)
@@ -19,7 +19,7 @@
 
 use strict;
 use warnings;
-use CGI;
+use CGI qw ( -utf8 );
 use C4::Auth;
 use C4::Koha;
 use C4::Output;
@@ -33,7 +33,7 @@ my $biblionumber = $query->param('biblionumber');
 my $review       = $query->param('review');
 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
     {
-        template_name   => "opac-review.tmpl",
+        template_name   => "opac-review.tt",
         query           => $query,
         type            => "opac",
         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),