]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Remove tabs accidently inserted with the checkin from bug 117279 (fix tinderbox ...
authorjustdave%bugzilla.org <>
Mon, 24 May 2004 12:47:11 +0000 (12:47 +0000)
committerjustdave%bugzilla.org <>
Mon, 24 May 2004 12:47:11 +0000 (12:47 +0000)
processmail

index 3c3da8b9d90df19a57b445f7ccdf623e8ef2c402..70aaf528e4dababc5eaf4536c171ec30b43b32e2 100755 (executable)
@@ -269,9 +269,9 @@ sub ProcessOneBug {
     my %AlreadySeen = ();
     my $checkperson = "";
     foreach my $person (@emailList) {
-       # don't modify the original so it sends out with the right case
-       # based on who came first.
-       $checkperson = lc($person);
+        # don't modify the original so it sends out with the right case
+        # based on who came first.
+        $checkperson = lc($person);
         if ( !($AlreadySeen{$checkperson}) ) {
             push(@allEmail,$person);
             $AlreadySeen{$checkperson}++;
@@ -377,7 +377,7 @@ sub filterExcludeList ($$) {
     my $checkperson = "";
 
     foreach my $person (@result) {
-       $checkperson = lc($person);
+        $checkperson = lc($person);
         if ( !($alreadySeen{$checkperson}) ) {
             push(@uniqueResult,$person);
             $alreadySeen{$checkperson}++;