]> git.decadent.org.uk Git - maypole.git/commitdiff
added a couple of requisites to the makefile
authorAaron Trevena <aaron.trevena@gmail.com>
Fri, 13 Jan 2006 19:02:46 +0000 (19:02 +0000)
committerAaron Trevena <aaron.trevena@gmail.com>
Fri, 13 Jan 2006 19:02:46 +0000 (19:02 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@451 48953598-375a-da11-a14b-00016c27c3ee

META.yml
Makefile.PL
lib/Maypole/Components.pm

index 1b91c7e72261f96f7e7a4013595e4e04a30ec5b5..518816880b10d7d3d5b7d7a477d73bff13840f92 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -17,6 +17,7 @@ requires:
     Class::DBI::Plugin::RetrieveAll: 0
     Class::DBI::SQLite:            0
     Digest::MD5:                   0
+    File::MMagic::XS:              0.08
     HTTP::Body:                    0.5
     HTTP::Headers:                 1.59
     Template:                      0
index 37f3ad99742d878ff6aa06176a36b69cdf0bd88c..9f104ffe4169bfee68ce9d587ab4b14474e59c80 100644 (file)
@@ -17,6 +17,8 @@ WriteMakefile(
         Class::DBI                       => 0.96,
         Class::DBI::SQLite               => 0,
         CGI::Untaint                     => 0,
+       CGI::Untaint::date               => 0,
+       CGI::Untaint::email              => 0,
         UNIVERSAL::moniker               => 0,
         UNIVERSAL::require               => 0,
         URI                              => 0,
index 48c54c7be7290cf7ae8130fd26af5500ade510da..31d6ac277e1e41fcd204ba56dbd003993a222624 100644 (file)
@@ -1,10 +1,11 @@
 package Maypole::Components;
-use base 'Maypole';
 use strict;
 use warnings;
 use URI; 
 use URI::QueryParam;
 
+our @ISA = qw(Maypole);
+
 sub new {
     my ($class,$r) = @_;
     my $self = bless { config => $r->config, parent => $r }, $class;