? 967734-4.patch Index: plugins/page_wizards/node_override.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/panels/plugins/page_wizards/node_override.inc,v retrieving revision 1.3 diff -u -p -w -B -r1.3 node_override.inc --- plugins/page_wizards/node_override.inc 11 Oct 2010 22:56:01 -0000 1.3 +++ plugins/page_wizards/node_override.inc 13 Dec 2010 16:13:55 -0000 @@ -72,7 +72,7 @@ function panels_node_override_start($for * First page of our page creator wizard. */ function panels_node_override_basic($form, &$form_state) { - $types = node_get_types(); + $form_state['types'] = $types; $already_done = array(); @@ -102,17 +102,12 @@ function panels_node_override_basic($for ); } - $options = array(); - foreach ($types as $name => $type) { - if (empty($already_done[$name])) { - $options[$name] = $type->name; - } - } + $form['type'] = array( '#type' => 'select', '#title' => t('Node type'), - '#options' => $options, + '#options' => array_map('check_plain', node_type_get_names()), '#default_value' => $form_state['cache']->type, );