Index: dayhour.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/station/dayhour.inc,v
retrieving revision 1.22
diff -u -p -r1.22 dayhour.inc
--- dayhour.inc	28 Nov 2009 22:17:27 -0000	1.22
+++ dayhour.inc	24 Oct 2010 20:54:31 -0000
@@ -202,6 +202,23 @@ function station_time_from_minute($minut
 }
 
 /**
+ * Format minutes into a day string, e.g. "Sunday".
+ *
+ * @param $time
+ *   Integer specifying minutes.
+ * @return
+ *   Formatted string.
+ */
+function theme_station_day($time) {
+  $day = station_day_from_minute($time);
+  $format_params = array(
+    '@day' => station_day_name($day),
+  );
+
+  return t('@day', $format_params);
+}
+
+/**
  * Format minutes into a day hour string, e.g. "Sunday 11:15pm".
  *
  * @param $time
Index: station.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/station/station.module,v
retrieving revision 1.59
diff -u -p -r1.59 station.module
--- station.module	28 Nov 2009 22:06:44 -0000	1.59
+++ station.module	24 Oct 2010 20:54:32 -0000
@@ -57,6 +57,10 @@ function station_theme() {
       'arguments' => array('start' => NULL, 'finish' => NULL),
       'file' => 'dayhour.inc',
     ),
+    'station_day' => array(
+      'arguments' => array('time' => NULL),
+      'file' => 'dayhour.inc',
+    ),
     'station_dayhour' => array(
       'arguments' => array('time' => NULL),
       'file' => 'dayhour.inc',
Index: schedule/views/station_schedule_handler_field_time.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/station/schedule/views/station_schedule_handler_field_time.inc,v
retrieving revision 1.2
diff -u -p -r1.2 station_schedule_handler_field_time.inc
--- schedule/views/station_schedule_handler_field_time.inc	22 Sep 2009 20:45:37 -0000	1.2
+++ schedule/views/station_schedule_handler_field_time.inc	24 Oct 2010 20:54:32 -0000
@@ -17,6 +17,7 @@ class station_schedule_handler_field_tim
       '#options' => array(
         'station_hour' => t('Hour'),
         'station_dayhour' => t('Day/hour'),
+        'station_day' => t('Day'),
       ),
       '#default_value' => $this->options['style'],
       '#description' => t('Which time style should be used.'),
