diff --git a/plugins/content_types/form/entity_form_field.inc b/plugins/content_types/form/entity_form_field.inc
index 1caec71..3acb5f3 100644
--- a/plugins/content_types/form/entity_form_field.inc
+++ b/plugins/content_types/form/entity_form_field.inc
@@ -102,7 +102,8 @@ function ctools_entity_form_field_content_type_render($subtype, $conf, $panel_ar
 function ctools_entity_form_field_content_type_admin_title($subtype, $conf, $context) {
   list($entity_type, $field_name) = explode(':', $subtype, 2);
 
-  $field = field_info_instance($entity_type, $field_name, $context->restrictions['type'][0]);
+  $bundle_name = (isset($context->restrictions['type'][0])) ? $context->restrictions['type'][0] : '';
+  $field = field_info_instance($entity_type, $field_name, $bundle_name);
 
   return t('"@s" @field form', array('@s' => $context->identifier, '@field' => $field['label']));
 }
