Merge pull request #10339 from annando/warning
Avoid warning "array_merge(): Expected parameter 2 to be an array, null given"
This commit is contained in:
commit
2258544237
|
@ -50,7 +50,7 @@ class Apps extends BaseApi
|
||||||
if (!empty($postdata)) {
|
if (!empty($postdata)) {
|
||||||
$postrequest = json_decode($postdata, true);
|
$postrequest = json_decode($postdata, true);
|
||||||
if (!empty($postrequest) && is_array($postrequest)) {
|
if (!empty($postrequest) && is_array($postrequest)) {
|
||||||
$request = array_merge($request, $$postrequest);
|
$request = array_merge($request, $postrequest);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue