backdrop-contrib / easy_breadcrumb

Provides a block with an alternative URL-based breadcrumb trail.
GNU General Public License v2.0
2 stars 3 forks source link

Label on hook_config_info implementation is incorrect #19

Closed laryn closed 2 years ago

laryn commented 2 years ago

It looks like boilerplate text was not removed and it is currently labeled "System performance".

/**
 * Implements hook_config_info().
 */
function easy_breadcrumb_config_info() {
  $prefixes['easy_breadcrumb.settings'] = array(
    'label' => t('System performance'),
    'group' => t('Configuration'),
  );
  return $prefixes;
}