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

(-)a/C4/Members.pm (-2 / +1 lines)
Lines 1570-1576 sub GetCities { Link Here
1570
    $city{""} = "";
1570
    $city{""} = "";
1571
    while ( my $data = $sth->fetchrow_hashref ) {
1571
    while ( my $data = $sth->fetchrow_hashref ) {
1572
        push @id, $data->{'city_zipcode'}."|".$data->{'city_name'};
1572
        push @id, $data->{'city_zipcode'}."|".$data->{'city_name'};
1573
        $city{ $data->{'city_zipcode'}."|".$data->{'city_name'} } = $data->{'city_name'};
1573
        $city{ $data->{'city_zipcode'}."|".$data->{'city_name'} } = $data->{'city_name'} . " " . $data->{'city_zipcode'};
1574
    }
1574
    }
1575
1575
1576
#test to know if the table contain some records if no the function return nothing
1576
#test to know if the table contain some records if no the function return nothing
1577
- 

Return to bug 4248