X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDispatcher.pm;h=cc886d8ca70ae19949ee4b6cfb70f6d5af5c58f6;hb=ae45c5b76d87727e7113d7163e34a9f6444247e8;hp=c412f64224ab168b1dea603a4f275eeeb2c339cd;hpb=41400107ec8929d6ea107de7f5238006e9de029c;p=kivitendo-erp.git diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index c412f6422..cc886d8ca 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -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};