From fc5d0e39616f0e6b0af80eb55525bfd43d46d6cd Mon Sep 17 00:00:00 2001 From: acli Date: Thu, 6 Feb 2003 05:04:36 +0000 Subject: [PATCH] Explicitly declare dependency on HTML::Template If checkauth() detects a permission problem (e.g., in untemplated scripts), this is necessary for the code (that displays the error message) to run (otherwise Perl dies with a very cryptic, confusing error message) --- C4/Output.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Output.pm b/C4/Output.pm index 6d61bb9d9a..ecccff96a7 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -32,6 +32,7 @@ require Exporter; use C4::Context; use C4::Database; +use HTML::Template; use vars qw($VERSION @ISA @EXPORT); -- 2.20.1