The attached patch fixes an array_merge() related error in page manager.

CommentFileSizeAuthor
page_manager_admin.patch963 bytesmarkus_petrux

Comments

markus_petrux’s picture

Status: Active » Needs review

oops

merlinofchaos’s picture

Hm. That error may be something else:

  $pages = array('operations' => array());

$pages['operations'] should always be an array.

markus_petrux’s picture

Project: Chaos Tool Suite (ctools) » Panels
Version: 6.x-1.x-dev » 6.x-3.x-dev

Ok, the problem happens in the Panels Dashboard.

And here's the quick fix for panels/includes/callbacks.inc

-    $pages = array();
+    $pages = array('operations' => array());

[EDIT]
Well, I'm not sure why I changed the project attached to the issue, it can still be fixed in page manager with the previous patch.

merlinofchaos’s picture

Status: Needs review » Fixed

Fixed in Panels. I could've gone either way I suppose.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.