fix array_merge(): Argument #2 must be of type array, int given

This commit is contained in:
ralf 2022-11-28 14:04:24 +01:00
parent e9b6553ab4
commit 1fad8bf766

View File

@ -476,11 +476,11 @@ class resources_ui
}
$nm_session_data = Api\Cache::getSession('resources', 'index_nm');
$res_id = is_numeric($content) ? (int)$content : $content['res_id'];
$res_id = is_scalar($content) && is_numeric($content) ? (int)$content : $content['res_id'];
if (isset($_GET['res_id'])) $res_id = $_GET['res_id'];
if (isset($nm_session_data['filter2']) && $nm_session_data['filter2'] > 0) $accessory_of = $nm_session_data['filter2'];
if (isset($_GET['accessory_of'])) $accessory_of = $_GET['accessory_of'];
$content = array('res_id' => $res_id, 'cat_id' => $content['cat_id']);
$content = is_array($content) ? $content : array('res_id' => $res_id);
if ($res_id > 0)
{
$content = array_merge($this->bo->read($res_id), $content);
@ -586,4 +586,3 @@ class resources_ui
}
}