Fix UTF-8 issue
the build was successful Details

This commit is contained in:
Reinhard Müller 2019-09-03 17:44:22 +02:00
förälder 1fadb4cd65
incheckning 859aee7cee
1 ändrade filer med 1 tillägg och 1 borttagningar

Visa fil

@ -39,7 +39,7 @@ if ($query->param("url")) {
my $name = decode("utf-8", $query->param("name"));
my $address = decode("utf-8", $query->param("address"));
my $country = $query->param("country");
my $country = decode("utf-8", $query->param("country"));
my ($country_code, $country_name) = split /\|/, $country;
my $email = decode("utf-8", $query->param("email"));
my $phone = decode("utf-8", $query->param("phone"));