Fix missing =back in pod
[catagits/Catalyst-Runtime.git] / lib / Catalyst.pm
index 4fd4da2..4113fed 100644 (file)
@@ -59,6 +59,7 @@ our $COUNT     = 1;
 our $START     = time;
 our $RECURSION = 1000;
 our $DETACH    = "catalyst_detach\n";
+our $GO        = "catalyst_go\n";
 
 #I imagine that very few of these really need to be class variables. if any.
 #maybe we should just make them attributes with a default?
@@ -1037,6 +1038,8 @@ using C<< $c->req->captures >>.
 
 =cut
 
+=back
+
 sub uri_for {
     my ( $c, $path, @args ) = @_;
 
@@ -1335,6 +1338,9 @@ sub execute {
         if ( !ref($error) and $error eq $DETACH ) {
             die $DETACH if($c->depth > 1);
         }
+        elsif ( !ref($error) and $error eq $GO ) {
+            die $GO if($c->depth > 0);
+        }
         else {
             unless ( ref $error ) {
                 no warnings 'uninitialized';