X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FAction.pm;h=b2a094770978a434c030ba67019e68494a5fb044;hp=e8b5230371ffdbd8b53a22ea760c625b768d1cf0;hb=261c571ec577304a8a41218a4576675c8099069a;hpb=0cf56dbcd3a060c815aa5e66a67709bb51efd80d 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 ); }