diff --git a/src/Gateways/JuheGateway.php b/src/Gateways/JuheGateway.php index 9dd3b7e..e94d707 100644 --- a/src/Gateways/JuheGateway.php +++ b/src/Gateways/JuheGateway.php @@ -71,6 +71,6 @@ protected function formatTemplateVars(array $vars) $formatted[sprintf('#%s#', trim($key, '#'))] = $value; } - return http_build_query($formatted); + return urldecode(http_build_query($formatted)); } }