X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/41400107ec8929d6ea107de7f5238006e9de029c..eb1efd213a130776d9f2068437e7d6e21f54dec5:/SL/Controller/Base.pm diff --git a/SL/Controller/Base.pm b/SL/Controller/Base.pm index 06fd7fbdd..d9b1783ee 100644 --- a/SL/Controller/Base.pm +++ b/SL/Controller/Base.pm @@ -19,7 +19,7 @@ sub url_for { my %params = @_; my $controller = delete($params{controller}) || $self->_controller_name; my $action = delete($params{action}) || 'dispatch'; - $params{action} = "${controller}::${action}"; + $params{action} = "${controller}/${action}"; my $query = join('&', map { $::form->escape($_) . '=' . $::form->escape($params{$_}) } keys %params); return "controller.pl?${query}";