Added attributes for detach
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Dispatcher.pm
index ca6c0ee..7e534e0 100644 (file)
@@ -24,15 +24,15 @@ See L<Catalyst>.
 
 =over 4
 
-=item $c->detach($command)
+=item $c->detach( $command [, \@arguments ] )
 
 Like C<forward> but doesn't return.
 
 =cut
 
 sub detach {
-    my ( $c, $command ) = @_;
-    $c->forward($command) if $command;
+    my ( $c, $command, @args ) = @_;
+    $c->forward( $command, @args ) if $command;
     die $Catalyst::Engine::DETACH;
 }
 
@@ -148,14 +148,15 @@ sub forward {
     my $results = $c->get_action( $command, $namespace );
 
     unless ( @{$results} ) {
-        
+
         unless ( $c->components->{$command} ) {
-            my $error = qq/Couldn't forward to command "$command". Invalid action or component./;
+            my $error =
+qq/Couldn't forward to command "$command". Invalid action or component./;
             $c->error($error);
             $c->log->debug($error) if $c->debug;
             return 0;
         }
-        
+
         my $class  = $command;
         my $method = shift || 'process';
 
@@ -165,7 +166,8 @@ sub forward {
         }
 
         else {
-            my $error = qq/Couldn't forward to "$class". Does not implement "$method"/;
+            my $error =
+              qq/Couldn't forward to "$class". Does not implement "$method"/;
             $c->error($error);
             $c->log->debug($error)
               if $c->debug;
@@ -173,8 +175,8 @@ sub forward {
         }
 
     }
-    
-    local $c->request->{arguments} = [ @{ $arguments } ];
+
+    local $c->request->{arguments} = [ @{$arguments} ];
 
     for my $result ( @{$results} ) {
         $c->execute( @{ $result->[0] } );