From 066850a13acc2a80696be02578a4dcbfc3767f7b Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 29 Apr 2010 22:20:12 -0400 Subject: [PATCH] Revert "Bug 4248: Fixes zip code in cities town pull down list." This reverts commit 2eac2e7242aa2685df8f511c49bbf50cb55be4fd. --- C4/Members.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Members.pm b/C4/Members.pm index 836b58b649..4f79e3e16a 100644 --- a/C4/Members.pm +++ b/C4/Members.pm @@ -1537,7 +1537,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'} . " " . $data->{'city_zipcode'}; + $city{ $data->{'city_zipcode'}."|".$data->{'city_name'} } = $data->{'city_name'}; } #test to know if the table contain some records if no the function return nothing -- 2.39.2