X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=664f0d2aa9f727f60c0396e7ba54d71b1cfac1e9;hb=fae374846bd8612908cd1c240284feb14d00d3e1;hp=7368674a6321495d3d69600dd2cc008a1ed46de4;hpb=d3e47ea7b725b7889ccff6e11b12ce0520f2758a;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 7368674..664f0d2 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -74,7 +74,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.8000_07'; +our $VERSION = '5.80001'; { my $dev_version = $VERSION =~ /_\d{2}$/; @@ -1480,6 +1480,7 @@ sub execute { push( @{ $c->stack }, $code ); + no warnings 'recursion'; eval { $c->state( $code->execute( $class, $c, @{ $c->req->args } ) || 0 ) }; $c->_stats_finish_execute( $stats_info ) if $c->use_stats and $stats_info;