Unverified Commit 2eed83e0 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

derp

parent 34a19ee1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1345,10 +1345,10 @@ sub compute_review {
			my ( $from, $to ) = split( qr{[|]}, $trips[$i][0] );
			my $found = 0;
			for my $j ( 0 .. $i - 1 ) {
				if (    $review{top_trip_count}[$j][0] eq $to
					and $review{top_trip_count}[$j][2] eq $from )
				if (    $review{top_trips}[$j][0] eq $to
					and $review{top_trips}[$j][2] eq $from )
				{
					$review{top_trip_count}[$j][1] = '';
					$review{top_trips}[$j][1] = '';
					$found = 1;
					last;
				}