Fix UTF-8 issue
the build was successful 詳情

This commit is contained in:
Reinhard Müller 2019-09-03 17:44:22 +02:00
父節點 1fadb4cd65
當前提交 859aee7cee
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -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"));