For information about current developments and future releases, see:
http://maypole.perl.org/?TheRoadmap
+2.0X XXX
+ Fixes:
+ - Model->process() shouldn't set $r->objects() to a list with a single,
+ undefined element
+
2.06 Wed Dec 29 01:30:00 2004
Fixes:
- Minor restructuring of the manual so search.cpan.org indexes it better
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Maypole
-version: 2.05
+version: 2.06
version_from: lib/Maypole.pm
installdirs: site
requires:
return if $r->{template}; # Authentication has set this, we're done.
$r->{template} = $method;
- $r->objects([ $class->fetch_objects($r) ]);
+ my $obj = $class->fetch_objects($r);
+ $r->objects([$obj]) if $obj;
$class->$method( $r, $obj, @{ $r->{args} } );
}