? includes/drupal.php
Index: modules/archive.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/archive.module,v
retrieving revision 1.62
diff -u -F^f -r1.62 archive.module
--- modules/archive.module	8 Sep 2004 15:38:25 -0000	1.62
+++ modules/archive.module	8 Sep 2004 22:43:08 -0000
@@ -213,12 +213,6 @@ function archive_menu() {
     'access' => user_access('access content'),
     'callback' => 'archive_page',
     'type' => MENU_SUGGESTED_ITEM);
-  $items[] = array('path' => 'archive/browse', 'title' => t('browse'),
-    'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
-  $items[] = array('path' => 'archive/configure', 'title' => t('configure'),
-    'access' => user_access('administer site configuration'),
-    'callback' => 'archive_configure',
-    'type' => MENU_LOCAL_TASK);
   return $items;
 }
 
@@ -262,14 +256,4 @@ function archive_page($year = 0, $month 
   print theme('page', $output);
 }
 
-function archive_configure() {
-  if ($_POST) {
-    system_settings_save();
-  }
-
-  $output = form_select(t('First day of week'), 'default_firstday', variable_get('default_firstday', 0), array(0 => t('Sunday'), 1 => t('Monday'), 2 => t('Tuesday'), 3 => t('Wednesday'), 4 => t('Thursday'), 5 => t('Friday'), 6 => t('Saturday')), t('The first day of the week.  By changing this value you choose how the calendar block is rendered.'));
-
-  print theme('page', system_settings_form($output));
-}
-
 ?>
Index: modules/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system.module,v
retrieving revision 1.170
diff -u -F^f -r1.170 system.module
--- modules/system.module	6 Sep 2004 18:32:54 -0000	1.170
+++ modules/system.module	8 Sep 2004 22:43:09 -0000
@@ -241,6 +241,7 @@ function system_view_general() {
   $group .= form_select(t('Short date format'), 'date_format_short', variable_get('date_format_short', $dateshort[0]), $dateshortchoices, t('The short format of date display.'));
   $group .= form_select(t('Medium date format'), 'date_format_medium', variable_get('date_format_medium', $datemedium[0]), $datemediumchoices, t('The medium sized date display.'));
   $group .= form_select(t('Long date format'), 'date_format_long', variable_get('date_format_long', $datelong[0]), $datelongchoices, t('Longer date format used for detailed display.'));
+  $group .= form_select(t('First day of week'), 'default_firstday', variable_get('default_firstday', 0), array(0 => t('Sunday'), 1 => t('Monday')), t('The first day of the week for calendar views.'));
 
   $output .= form_group(t('Date settings'), $group);
 
