From: jouni%heikniemi.net <> Date: Thu, 13 May 2004 14:17:43 +0000 (+0000) Subject: Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten on... X-Git-Tag: bugzilla-2.18rc1~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8de93fcc5c9a63482bd6461574750b470af5fa1;p=thirdparty%2Fbugzilla.git Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten on previous checkin. --- diff --git a/globals.pl b/globals.pl index 7439940c35..7c1c9eb937 100644 --- a/globals.pl +++ b/globals.pl @@ -1409,12 +1409,12 @@ sub DiffStrings { # that were removed; @new contains ones that got added. foreach my $oldv (@old) { - foreach my $newv (@new) { - next if ($newv eq ''); - if ($oldv eq $newv) { - $newv = $oldv = ''; + foreach my $newv (@new) { + next if ($newv eq ''); + if ($oldv eq $newv) { + $newv = $oldv = ''; + } } - } } my $removed = join (", ", grep { $_ ne '' } @old); my $added = join (", ", grep { $_ ne '' } @new);