diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 96d6e70..2f7e07c 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -743,6 +743,11 @@ function system_menu() { 'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.', 'route_name' => 'system.rss_feeds_settings', ); + $items['admin/config/services/rss-publishing/settings'] = array( + 'title' => 'Settings', + 'type' => MENU_DEFAULT_LOCAL_TASK, + 'weight' => -10, + ); // Development settings. $items['admin/config/development'] = array( @@ -758,6 +763,11 @@ function system_menu() { 'route_name' => 'system.site_maintenance_mode', 'weight' => -10, ); + $items['admin/config/development/maintenance/settings'] = array( + 'title' => 'Settings', + 'type' => MENU_DEFAULT_LOCAL_TASK, + 'weight' => -10, + ); $items['admin/config/development/performance'] = array( 'title' => 'Performance', 'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.', @@ -832,6 +842,11 @@ function system_menu() { 'route_name' => 'system.site_information_settings', 'weight' => -20, ); + $items['admin/config/system/site-information/settings'] = array( + 'title' => 'Settings', + 'type' => MENU_DEFAULT_LOCAL_TASK, + 'weight' => -10, + ); $items['admin/config/system/cron'] = array( 'title' => 'Cron', 'description' => 'Manage automatic site maintenance tasks.',