X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction.pm;h=b2a094770978a434c030ba67019e68494a5fb044;hb=bab3a22c7bc0c348a5f336c50eaac376664862a4;hp=e8b5230371ffdbd8b53a22ea760c625b768d1cf0;hpb=d4a29ad2859eb2b659bdd1032bd00f431235487e;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Action.pm b/lib/Catalyst/Action.pm index e8b5230..b2a0947 100644 --- a/lib/Catalyst/Action.pm +++ b/lib/Catalyst/Action.pm @@ -41,7 +41,7 @@ See L. sub execute { # Execute ourselves against a context my ( $self, $c ) = @_; - local $c->{namespace} = $self->namespace; + local $c->namespace = $self->namespace; return $c->execute( $self->class, $self ); }