Index: commentrss.admin.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/commentrss/Attic/commentrss.admin.inc,v retrieving revision 1.1.2.1 diff -u -p -r1.1.2.1 commentrss.admin.inc --- commentrss.admin.inc 1 Oct 2008 14:09:17 -0000 1.1.2.1 +++ commentrss.admin.inc 6 Oct 2008 10:17:15 -0000 @@ -7,6 +7,14 @@ */ /** + * Proxy callback for RSS settings to allow overriding the default tab. + */ +function commentrss_default_rss_settings_tab() { + include_once drupal_get_path('module', 'system') .'/system.admin.inc'; + return drupal_get_form('system_rss_feeds_settings'); +} + +/** * Menu callback; displays the commentrss module settings page. */ function commentrss_admin_settings() { Index: commentrss.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/commentrss/commentrss.module,v retrieving revision 1.12.2.2.2.6.2.1 diff -u -p -r1.12.2.2.2.6.2.1 commentrss.module --- commentrss.module 1 Oct 2008 14:09:17 -0000 1.12.2.2.2.6.2.1 +++ commentrss.module 6 Oct 2008 10:17:16 -0000 @@ -50,7 +50,10 @@ function commentrss_menu() { // Copy of menu item from system.module. $items['admin/content/rss-publishing/default'] = array( 'title' => 'General settings', + 'page callback' => 'commentrss_default_rss_settings_tab', + 'weight' => -10, 'type' => MENU_DEFAULT_LOCAL_TASK, + 'file' => 'commentrss.admin.inc', ); // New local task on the RSS publishing settings page. $items['admin/content/rss-publishing/commentrss'] = array(