- Added missing fallback to Catalyst::Action as spotted by Frank Wiegand
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Action.pm
index 130006a..0002ef7 100644 (file)
@@ -13,6 +13,9 @@ use overload (
     # Codulate to encapsulated action coderef
     '&{}' => sub { shift->{code} },
 
+    # Make general $stuff still work
+    fallback => 1,
+
 );
 
 =head1 NAME