diff --git a/fillpdf.module b/fillpdf.module index 810a07131239a7a8e92e64a1a3f5adcb42b272a3..f6b7da8244c63d78dfecba1edfc306018225c720 100644 --- a/fillpdf.module +++ b/fillpdf.module @@ -810,12 +810,14 @@ function fillpdf_load_entities($fillpdf_info, $nids, $webform_array, $uc_order_i // If no nid is given, and Entity API is disabled, use the default nid as a // classic node. (If Entity API is enabled, we'll handle it as an entity later // on in this function.) - if (!$entity_mode && !empty($fillpdf_info->default_nid) && empty($nids) && empty($webform_array)) { + if (empty($fillpdf_info->default_entity_type) && !empty($fillpdf_info->default_nid) && empty($nids) && empty($webform_array)) { $default_node = node_load($fillpdf_info->default_nid); if ($default_node) { // Default node is a non-webform node. if (empty($default_node->webform)) { - $context['nodes'][] = $default_node; + if (!$entity_mode) { + $context['nodes'][] = $default_node; + } } // Default node is a webform. else { @@ -825,6 +827,8 @@ function fillpdf_load_entities($fillpdf_info, $nids, $webform_array, $uc_order_i 'node' => $default_node, ), ); + // Since this is handled here, prevent it from being processed as an entity later. + $entity_mode = FALSE; } } }