Using drush em-list, I noticed warnings from several modules, including the default page manager provided with CTools as well as my own code, like:

WD php: Undefined index:  page_manager_pages in                                                              [error]
(path)/sites/all/modules/drush_em/modules/ctools.inc on line 56.
WD php: Undefined index:  page_manager_handlers in                                                           [error]
(path)/sites/all/modules/drush_em/modules/ctools.inc on line 56.
WD php: Undefined index:  panels_mini in                                                                     [error]
(path)/sites/all/modules/drush_em/modules/ctools.inc on line 56.

Don't know if it's a bug in page manager and my own code or in this plugin.

That's using Drush 3.0 and PHP 5.2.10-2ubuntu6.4

CommentFileSizeAuthor
#2 834568-1.patch3.4 KBfgm

Comments

xen’s picture

Try changing line 56 of drush_em/modules/ctools.inc from

    if ($export_types[$name]) {
    if (isset($export_types[$name])) {

and see if that doesn't help?

fgm’s picture

Status: Active » Needs review
StatusFileSize
new3.4 KB

It does.

xen’s picture

Status: Needs review » Fixed

Thanks, committed.

Status: Fixed » Closed (fixed)

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