1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Remove version requirement for use HTML::Template
This breaks with use HTML::Template 2.10, since 2.1 < 2.4 ...
Origin: vendor
Bug-Debian: http://bugs.debian.org/634582
Forwarded: no, and the problem is more in HTML::Template#s version history
Author: gregor herrmann <gregoa@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2011-07-21
Applied-Upstream: *** FIXME ***
--- a/Expr.pm
+++ b/Expr.pm
@@ -5,7 +5,7 @@
$VERSION = '0.07';
-use HTML::Template 2.4;
+use HTML::Template;
use Carp qw(croak confess carp);
use Parse::RecDescent;
|