You are here

function custom_breadcrumbs_update_6203 in Custom Breadcrumbs 7.2

Same name and namespace in other branches
  1. 6.2 custom_breadcrumbs.install \custom_breadcrumbs_update_6203()

Enables custom_breadcrumbs_identifiers for legacy.

File

./custom_breadcrumbs.install, line 199
Install file for the custom_breadcrumbs module.

Code

function custom_breadcrumbs_update_6203() {
  module_enable(array(
    'custom_breadcrumbs_identifiers',
  ));
  return t('Custom_breadcrumbs_identifiers was enabled for legacy reasons. Please disable it if you do not need special identifiers in your breadcrumb settings.');
}