@@ -, +, @@ --- C4/Members.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/C4/Members.pm +++ a/C4/Members.pm @@ -1570,7 +1570,7 @@ sub GetCities { $city{""} = ""; while ( my $data = $sth->fetchrow_hashref ) { push @id, $data->{'city_zipcode'}."|".$data->{'city_name'}; - $city{ $data->{'city_zipcode'}."|".$data->{'city_name'} } = $data->{'city_name'}; + $city{ $data->{'city_zipcode'}."|".$data->{'city_name'} } = $data->{'city_name'} . " " . $data->{'city_zipcode'}; } #test to know if the table contain some records if no the function return nothing --