]> wagnertech.de Git - mfinanz.git/blobdiff - SL/Dispatcher.pm
Trennzeichen für Controller-Routing von :: auf / geändert
[mfinanz.git] / SL / Dispatcher.pm
index c412f64224ab168b1dea603a4f275eeeb2c339cd..cc886d8ca70ae19949ee4b6cfb70f6d5af5c58f6 100644 (file)
@@ -282,7 +282,7 @@ sub _route_controller_request {
   my ($controller, $action);
 
   eval {
-    $::form->{action}      =~ m|^ ( [A-Z] [A-Za-z0-9_]* ) :: ( [a-z] [a-z0-9_]* ) $|x || die "Unroutable request -- inavlid controller/action.\n";
+    $::form->{action}      =~ m|^ ( [A-Z] [A-Za-z0-9_]* ) / ( [a-z] [a-z0-9_]* ) $|x || die "Unroutable request -- inavlid controller/action.\n";
     ($controller, $action) =  ($1, $2);
     delete $::form->{action};