Fix string concatenation without initialization

This commit is contained in:
Kijin Sung 2022-08-15 18:31:41 +09:00
parent d93027078e
commit 019aa525c6

View file

@ -1110,7 +1110,7 @@ function changeValueInUrl($key, $requestKey, $dbKey, $urlName = 'success_return_
if(isset($parsedStr[$key]))
{
$parsedStr[$key] = $requestKey;
$successReturnUrl .= $arrayUrl['path'].'?'.http_build_query($parsedStr);
$successReturnUrl = $arrayUrl['path'].'?'.http_build_query($parsedStr);
Context::set($urlName, $successReturnUrl);
}
}