Closed (duplicate)
Project:
Panels
Version:
4.7.x-1.1
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
22 Mar 2007 at 10:52 UTC
Updated:
11 Mar 2021 at 19:06 UTC
I noticed that this module fails to run on PHP5 with the following errors being displayed in Drupal,
# warning: array_merge() [function.array-merge]: Argument #1 is not an array in modules\panels\content_types\block.inc on line 25.
# warning: array_merge() [function.array-merge]: Argument #2 is not an array in modules\panels\content_types\block.inc on line 25.The solution is to edit the line 25 from
$block = (object)array_merge($block,db_fetch_object($result));
to
$block = (object)array_merge((array)$block,(array)db_fetch_object($result));
That solves it.
Comments
Comment #1
merlinofchaos commentedhttp://drupal.org/node/128518