Index: modules/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system.module,v
retrieving revision 1.204.2.4
diff -u -r1.204.2.4 system.module
--- modules/system.module	26 Jul 2005 01:56:18 -0000	1.204.2.4
+++ modules/system.module	2 Oct 2005 15:23:34 -0000
@@ -125,7 +125,12 @@
  * Menu callback; provides the main page of the administration section.
  */
 function system_admin_page() {
-  watchdog_overview('actions');
+  menu_set_active_item(variable_get('site_adminpage', 'admin/logs'));
+  $return = menu_execute_active_handler();
+  if (empty($return)) {
+    drupal_set_title(t('Page not found'));
+  }
+  return $return;
 }
 
 /**
@@ -204,6 +209,7 @@
   $group .= form_textarea(t('Footer message'), 'site_footer', variable_get('site_footer', ''), 70, 5, t('This text will be displayed at the bottom of each page.  Useful for adding a copyright notice to your pages.'));
   $group .= form_textfield(t('Anonymous user'), 'anonymous', variable_get('anonymous', 'Anonymous'), 70, 70, t('The name used to indicate anonymous users.'));
   $group .= form_textfield(t('Default front page'), 'site_frontpage', variable_get('site_frontpage', 'node'), 70, 70, t('The home page displays content from this relative URL.  If you are not using clean URLs, specify the part after "?q=".  If unsure, specify "node".'));
+  $group .= form_textfield(t('Default admin front page'), 'site_adminpage', variable_get('site_adminpage', 'admin/logs'), 60, 70, t('The admin home page displays content from this relative URL.  If you are not using clean URLs, specify the part after "?q=".  If unsure, specify "admin/logs".'));
 
   // We check for clean URL support using an image on the client side.
   $group .= form_radios(t('Clean URLs'), 'clean_url', variable_get('clean_url', 0), array(t('Disabled'), t('Enabled')), t('This option makes Drupal emit clean URLs (i.e. without <code>?q=</code> in the URL). You\'ll need <code>ModRewrite</code> support for this to work. See the <code>.htaccess</code> file in Drupal\'s top-level directory for more information.'));
