From 70e1559de935668f85affe8c2e73eaa45d3d1715 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 29 May 2007 11:07:05 +0000 Subject: [PATCH] =?utf8?q?Es=20erm=C3=B6glichen,=20dass=20bei=20den=20Beri?= =?utf8?q?chtsfunktionen=20nicht=20nach=20Bearbeitern=20gefiltert=20wird.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- bin/mozilla/oe.pl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index ac4dcf5b4..c9cb92e0a 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -1386,7 +1386,7 @@ sub search { $form->get_lists("projects" => { "key" => "ALL_PROJECTS", "all" => 1 }, - "employees" => "ALL_EMPLOYEES", + "employees" => "ALL_EMPLOYEES", $vc => "ALL_" . uc($vc)); my %labels = (); @@ -1401,7 +1401,7 @@ sub search { #employees %labels = (); - @values = (); + @values = (""); foreach my $item (@{ $form->{"ALL_EMPLOYEES"} }) { push(@values, $item->{"id"}); $labels{$item->{"id"}} = $item->{"name"} ne "" ? $item->{"name"} : $item->{"login"}; @@ -1411,8 +1411,9 @@ sub search { | . $locale->text('Employee') . qq| | . - NTI($cgi->popup_menu('-name' => 'employee_id', '-default' => $form->{"employee_id"}, - '-values' => \@values, '-labels' => \%labels)) . qq| + NTI($cgi->popup_menu('-name' => 'employee_id', + '-values' => \@values, + '-labels' => \%labels)) . qq| |; -- 2.20.1