View | Details | Raw Unified | Return to bug 21027
Collapse All | Expand All

(-)a/members/statistics.pl (-2 / +4 lines)
Lines 198-204 sub merge { Link Here
198
        for my $ch ( @r ) {
198
        for my $ch ( @r ) {
199
            $exists = 1;
199
            $exists = 1;
200
            for my $cn ( @statistic_column_names ) {
200
            for my $cn ( @statistic_column_names ) {
201
                if ( $ch->{$cn} and not $ch->{$cn} eq $h->{$cn} ) {
201
                if (   ( not defined $ch->{$cn} && defined $h->{$cn} )
202
                    || ( defined $ch->{$cn} && not defined $h->{$cn} )
203
                    || ( $ch->{$cn} ne $h->{$cn} ) )
204
                {
202
                    $exists = 0;
205
                    $exists = 0;
203
                    last;
206
                    last;
204
                }
207
                }
205
- 

Return to bug 21027