typos
authorSven Schöling <s.schoeling@linet-services.de>
Fri, 31 Aug 2012 10:23:36 +0000 (12:23 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 17 Oct 2012 13:51:26 +0000 (15:51 +0200)
bin/mozilla/menu.pl

index f6066e7..75f2bc4 100644 (file)
@@ -116,15 +116,15 @@ sub section_menu {
     $menuitem->{module} ||= $::form->{script};
     $menuitem->{action} ||= "section_menu";
     $menuitem->{target} ||= "main_window";
-    $menuitem->{href}   ||= "$item->{module}?action=$item->{action}";
+    $menuitem->{href}   ||= "$menuitem->{module}?action=$menuitem->{action}";
 
     # add other params
-    foreach my $key (keys %$item) {
+    foreach my $key (keys %$menuitem) {
       next if $key =~ /target|module|action|href/;
       $menuitem->{href} .= "&" . $::form->escape($key, 1) . "=";
-      my ($value, $conf) = split(/=/, $item->{$key}, 2);
+      my ($value, $conf) = split(/=/, $menuitem->{$key}, 2);
       $value = $::myconfig{$value} . "/$conf" if ($conf);
-      $item->{href} .= $::form->escape($value, 1);
+      $menuitem->{href} .= $::form->escape($value, 1);
     }
 
     my $anchor = $menuitem->{href};