Bug 19532: (follow-up) Fix calls, tests, syspref settings, checks
[koha-ffzg.git] / opac / opac-mymessages.pl
index fa28a69..6acebad 100755 (executable)
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-use warnings;
+use Modern::Perl;
 
 use CGI qw ( -utf8 );
 
-use C4::Auth;
+use C4::Auth qw( get_template_and_user );
 use C4::Context;
-use C4::Koha;
 use C4::Letters;
-use C4::Output;
+use C4::Output qw( output_html_with_http_headers );
 
 my $query = CGI->new();
 
@@ -35,8 +33,6 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
         template_name   => 'opac-mymessages.tt',
         query           => $query,
         type            => 'opac',
-        authnotrequired => 0,
-        debug           => 1,
     }
 );