mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Fix string concatenation without initialization
This commit is contained in:
parent
d93027078e
commit
019aa525c6
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue