]> wagnertech.de Git - mfinanz.git/blobdiff - SL/Controller/Base.pm
Trennzeichen für Controller-Routing von :: auf / geändert
[mfinanz.git] / SL / Controller / Base.pm
index 06fd7fbdd753bc78ae9921f9410343f69fe3090b..d9b1783ee0230dffe0737229ffe3912a2f640393 100644 (file)
@@ -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}";