Controller-Namensraum nur ohne "strict refs" durchsuchbar
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 30 Dec 2010 15:31:59 +0000 (16:31 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 30 Dec 2010 15:31:59 +0000 (16:31 +0100)
SL/Controller/Base.pm

index 982c379..0c81470 100644 (file)
@@ -98,6 +98,7 @@ sub _controller_name {
 sub _dispatch {
   my $self    = shift;
 
+  no strict 'refs';
   my @actions = grep { m/^action_/ } keys %{ ref($self) . "::" };
   my $action  = first { $::form->{$_} } @actions;