From: Tomas Doran Date: Mon, 7 Sep 2009 14:45:01 +0000 (+0000) Subject: Fix hash key name back to what it used to be for compat, keeping renamed accessor... X-Git-Tag: 5.80012~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c77865585f68f34422f7a6eacf2fa901531f05d9;p=catagits%2FCatalyst-Runtime.git Fix hash key name back to what it used to be for compat, keeping renamed accessor where it was. Tests for this breakage to follow --- diff --git a/lib/Catalyst/Controller.pm b/lib/Catalyst/Controller.pm index b6ca882..cb01c11 100644 --- a/lib/Catalyst/Controller.pm +++ b/lib/Catalyst/Controller.pm @@ -29,9 +29,9 @@ has action_namespace => predicate => 'has_action_namespace', ); -has _controller_actions => +has actions => ( - is => 'rw', + accessor => '_controller_actions', isa => 'HashRef', init_arg => undef, );