[Catalyst-commits] r11331 - Catalyst-Runtime/5.80/trunk/lib/Catalyst
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Mon Sep 7 14:45:01 GMT 2009
Author: t0m
Date: 2009-09-07 14:45:01 +0000 (Mon, 07 Sep 2009)
New Revision: 11331
Modified:
Catalyst-Runtime/5.80/trunk/lib/Catalyst/Controller.pm
Log:
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
Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Controller.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Controller.pm 2009-09-07 12:00:23 UTC (rev 11330)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Controller.pm 2009-09-07 14:45:01 UTC (rev 11331)
@@ -29,9 +29,9 @@
predicate => 'has_action_namespace',
);
-has _controller_actions =>
+has actions =>
(
- is => 'rw',
+ accessor => '_controller_actions',
isa => 'HashRef',
init_arg => undef,
);
More information about the Catalyst-commits
mailing list