summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xhttpd/cgi-bin/check4
-rwxr-xr-xhttpd/cgi-bin/sendfeedback.pl2
-rwxr-xr-xmisc/docs_errors.pl2
3 files changed, 5 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check
index baaec2b..534b061 100755
--- a/httpd/cgi-bin/check
+++ b/httpd/cgi-bin/check
@@ -53,7 +53,9 @@ use File::Spec::Functions qw(catfile rel2abs tmpdir);
use HTML::Encoding 0.52 qw();
use HTML::HeadParser 3.60 qw(); # Needed for HTML5 meta charset workaround
use HTML::Parser 3.24 qw(); # Need 3.24 for $p->parse($code_ref)
-use HTML::Template 2.6 qw(); # Need 2.6 for path param, other things.
+use HTML::Template qw(); # Need 2.6 for path param, other things.
+ # Specifying 2.6 would break with 2.10,
+ # rt.cpan.org#70190
use HTTP::Headers::Util qw();
use HTTP::Message 1.52 qw(); # Need 1.52 for decoded_content()
use HTTP::Request qw();
diff --git a/httpd/cgi-bin/sendfeedback.pl b/httpd/cgi-bin/sendfeedback.pl
index ab639ec..656af7e 100755
--- a/httpd/cgi-bin/sendfeedback.pl
+++ b/httpd/cgi-bin/sendfeedback.pl
@@ -10,7 +10,7 @@ use warnings;
use CGI qw();
use File::Spec::Functions qw(catfile);
-use HTML::Template 2.6 qw();
+use HTML::Template qw(); # Need 2.6 but can't say, rt.cpan.org#70190
use Config::General 2.32 qw(); # Need 2.32 for <msg 0>, rt.cpan.org#17852
use vars qw($DEBUG $CFG %RSRC $VERSION);
diff --git a/misc/docs_errors.pl b/misc/docs_errors.pl
index 274d4b3..8cb9220 100755
--- a/misc/docs_errors.pl
+++ b/misc/docs_errors.pl
@@ -10,7 +10,7 @@ use warnings;
## Modules. See also the BEGIN block further down below.
use File::Spec::Functions qw(catfile);
-use HTML::Template 2.6 qw();
+use HTML::Template qw(); # Need 2.6 but can't say, rt.cpan.org#70190
use Config::General 2.32 qw(); # Need 2.32 for <msg 0>, rt.cpan.org#17852
use vars qw($DEBUG $CFG $VERSION);