ctools/plugins/content_types/views_row.inc

'edit form' => array(
  'views_content_views_row_content_type_edit_form' => t('Select context'),
  'views_content_views_row_edit' => t('Configure rows'),
),

I haven't figured why yet, but the above array ends up as $form_id in

function _semantic_panels_rewrite_push_form_alter($form_id) {
  $cache = &drupal_static(__FUNCTION__, array());

  if ($form_id !== NULL && !isset($cache[$form_id])) {
    $cache[$form_id] = $form_id;
  }

  return $cache;
}

Meaning an array is used as an array key, causing a nasty looking error message.

Comments

emattias’s picture

Version: » 7.x-1.x-dev
Status: Active » Postponed (maintainer needs more info)

Can you reproduce it with the latest beta? If so how?

emattias’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)