From: Sebastian Riedel Date: Tue, 24 May 2005 11:45:58 +0000 (+0000) Subject: Fixed dispatcher X-Git-Tag: 5.7099_04~1370 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=e5f21aa207cbf0364944a25a5e3d403aa81b77c4 Fixed dispatcher --- diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 895d168..4bd49ca 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -66,7 +66,7 @@ sub dispatch { } # Execute the action or last default - my $mkay = defined $autorun ? $c->state ? 1 : 0 : 1; + my $mkay = $autorun ? $c->state ? 1 : 0 : 1; if ( ( my $action = $c->req->action ) && $mkay ) { if ( my $result = @{ $c->get_action( $action, $default, 1 ) }[-1] ) {