summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorjouni%heikniemi.net <>2004-05-13 16:17:43 +0200
committerjouni%heikniemi.net <>2004-05-13 16:17:43 +0200
commita8de93fcc5c9a63482bd6461574750b470af5fa1 (patch)
treedc002a23fc1564b1cddfa6ebc7e994a7f5c5512e /globals.pl
parentb1317e9fa0f343c92577ce729eb5abee0878b59a (diff)
downloadbugzilla-a8de93fcc5c9a63482bd6461574750b470af5fa1.tar.gz
bugzilla-a8de93fcc5c9a63482bd6461574750b470af5fa1.tar.xz
Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten on previous checkin.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/globals.pl b/globals.pl
index 7439940c3..7c1c9eb93 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);