Bug 15288: Error pages: Code duplication removal and better translatability
[koha-equinox.git] / errors / 404.pl
index e7e0071..57191f1 100755 (executable)
@@ -27,12 +27,15 @@ my $query = CGI->new;
 my $admin = C4::Context->preference('KohaAdminEmailAddress');
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
     {
-        template_name   => 'errors/404.tt',
+        template_name   => 'errors/errorpage.tt',
         query           => $query,
         type            => 'intranet',
         authnotrequired => 1,
         debug           => 1,
     }
 );
-$template->param( admin => $admin );
+$template->param (
+    admin => $admin,
+    errno => 404,
+);
 output_with_http_headers $query, $cookie, $template->output, 'html', '404 Not Found';