--- D:\xampplite\htdocs\koshin-local\sites\all\modules\taxonomy_breadcrumb\taxonomy_breadcrumb.admin.inc 2009-01-12 10:19:26.000000000 +-0800 +++ D:\xampplite\htdocs\koshin\sites\all\modules\taxonomy_breadcrumb\taxonomy_breadcrumb.admin.inc 2009-03-10 20:52:18.000000000 +-0800 @@ -26,12 +26,20 @@ $form['settings']['taxonomy_breadcrumb_show_current_term'] = array( '#type' => 'checkbox', '#title' => t('Show current term in breadcrumb trail?'), '#default_value' => variable_get('taxonomy_breadcrumb_show_current_term', TRUE), '#description' => t('When enabled, the lightest term associated with node is shown as the last breadcrumb in the breadcrumb trail. When disabled, the only terms shown in the breadcrumb trail are parent terms (if any parents exist). The recommended setting is enabled.'), ); + + $form['settings']['taxonomy_breadcrumb_include_node_title'] = array( + '#type' => 'checkbox', + '#title' => t('Show current node title in breadcrumb trail?'), + '#default_value' => variable_get('taxonomy_breadcrumb_include_node_title', TAXONOMY_BREADCRUMB_INCLUDE_NODE_TITLE), + '#description' => t('When enabled and when viewing a node, the node\'s title will be shown as the last breadcrumb in the breadcrumb trail. The recommended setting is enabled.'), + '#weight' => 30, + ); $form['advanced'] = array( '#type' => 'fieldset', '#description' => 'Use these advanced settings to control which node types taxonomy based breadcrumbs will be generated for. This allows taxonomy_breadcrumb to peacefully coexist with modules that define their own breadcrumbs, such as the book module. For typical drupal configurations, administrators will not need to modify these settings; however, if user contributed modules are enabled you may need to fine tune taxonomy_breadcrumb here.', '#title' => t('Advanced Settings'), '#collapsible' => TRUE,