mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +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]))
|
if(isset($parsedStr[$key]))
|
||||||
{
|
{
|
||||||
$parsedStr[$key] = $requestKey;
|
$parsedStr[$key] = $requestKey;
|
||||||
$successReturnUrl .= $arrayUrl['path'].'?'.http_build_query($parsedStr);
|
$successReturnUrl = $arrayUrl['path'].'?'.http_build_query($parsedStr);
|
||||||
Context::set($urlName, $successReturnUrl);
|
Context::set($urlName, $successReturnUrl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue