It's a Drupal convention that lists of Drupal paths are entered into textareas.
(e.g. blocks visibility settings and context path input)
Custom Breadcrumbs should adhere to this convention.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

AaronBauman’s picture

Status: Active » Needs review
MGN’s picture

Status: Needs review » Reviewed & tested by the community

Thanks. Tested and seems to work fine. I'll commit to 6.x-2.x-dev soon.

Qandeel’s picture

Issue summary: View changes

What is the update on this patch ??? is it also part of 7.x ??

emi_bcn’s picture

Hi there,
I need a longer than 128 chars value for custom_breadcrumbs_excluded. I just changed to:

  $form['adv_settings']['custom_breadcrumbs_excluded']['custom_breadcrumbs_exclude_list'] = array(
    '#type' => 'textarea', 
    '#title' => t('Do not set custom breadcrumbs on the following paths'),
    '#default_value' => variable_get('custom_breadcrumbs_exclude_list', $default),
    '#description' => t("A comma delimited set of paths to exclude from custom breadcrumbs. The '*' character can be used as a wildcard."),
  );

It works fine, but maybe it's better to put avery exclude path on a different line.

emi_bcn’s picture

Version: 6.x-2.x-dev » 7.x-2.0-beta1
Component: User interface » Code

Adding bug to 7.x version.

lamp5’s picture

Status: Reviewed & tested by the community » Closed (outdated)