]> git.decadent.org.uk Git - maypole.git/commitdiff
fixed template_args
authorSebastian Riedel <sri@labs.kraih.com>
Wed, 27 Oct 2004 20:53:26 +0000 (20:53 +0000)
committerSebastian Riedel <sri@labs.kraih.com>
Wed, 27 Oct 2004 20:53:26 +0000 (20:53 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@275 48953598-375a-da11-a14b-00016c27c3ee

Changes
lib/Maypole.pm

diff --git a/Changes b/Changes
index 4ad40f2c0b3f1b7d411fbb022c2c843038c43172..27cc5d86ebcf4ebae07c49f2abe91b2a7b5ec737 100644 (file)
--- a/Changes
+++ b/Changes
@@ -2,6 +2,7 @@ Revision history for Perl extension Maypole
 
 2.04  Tue Oct 27 14:00:00 2004
     - Fixed Apache::MVC version (Randal Schwartz)
+    - fixed template_args (Dave Howorth)
 
 2.03  Tue Oct 26 13:00:00 2004
     - increased version number of Apache::MVC
index eed0c74aa1a49ac89f23b8d089104ce61cdd42e3..a0e50cb681a5a4ade1ab1c9a840fd1ff73093968 100644 (file)
@@ -59,7 +59,7 @@ sub handler {
     # See Maypole::Workflow before trying to understand this.
     my ( $class, $req ) = @_;
     $class->init unless $class->init_done;
-    my $r = bless { config => $class->config }, $class;
+    my $r = bless { template_args => {}, config => $class->config }, $class;
     $r->get_request($req);
     $r->parse_location();
     my $status = $r->handler_guts();