]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole.pm
init accessors -- bug fix 15147
[maypole.git] / lib / Maypole.pm
index b1e066d648ce778c0c78eb51c781e474c3e33762..83ce94ab31d51974bbdcf9c608c54b9a8d18b32c 100644 (file)
@@ -401,11 +401,16 @@ Constructs a very minimal new Maypole request object.
 sub new
 {
     my ($class) = @_;
-    
     my $self = bless {
-        template_args => {},
         config        => $class->config,
     }, $class;
+
+       $self->stash({});
+       $self->params({});
+       $self->query({});
+       $self->template_args({});
+       $self->args([]);
+       $self->objects([]);
     
     return $self;
 }
@@ -486,7 +491,14 @@ to the method
 
 sub component {
     my ( $r, $path ) = @_;
-    my $self = bless { parent => $r, config => $r->{config}, template_args => {}, }, ref $r;
+    my $self = bless { parent => $r, config => $r->{config}, } , ref $r;
+       $self->stash({});
+       $self->params({});
+       $self->query({});
+       $self->template_args({});
+       $self->args([]);
+       $self->objects([]);
+
     $self->get_user;
     my $url = URI->new($path);
     warn "path : $path\n";