Index: schedule/views/station_schedule.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/station/schedule/views/station_schedule.views.inc,v
retrieving revision 1.12
diff -u -p -r1.12 station_schedule.views.inc
--- schedule/views/station_schedule.views.inc	3 Jul 2010 20:42:02 -0000	1.12
+++ schedule/views/station_schedule.views.inc	12 Sep 2010 19:38:52 -0000
@@ -288,7 +288,7 @@ function station_schedule_views_data_alt
     'group' => t('Station Schedule'),
     'title' => t('Scheduled Programs'),
     'help' => t('All programs on this schedule.'),
-    'real field' => 'nid',
+    'real field' => 'schedule_nid',
 //    'field' => array(
 //      'handler' => 'views_handler_field_upload_fid',
 //    ),
@@ -314,7 +314,7 @@ function station_schedule_views_data_alt
     'group' => t('Station Program'),
     'title' => t('Program Schedule Times'),
     'help' => t('All the times this program is scheduled.'),
-    'real field' => 'nid',
+    'real field' => 'program_nid',
 //    'field' => array(
 //      'handler' => 'views_handler_field_upload_fid',
 //    ),
Index: schedule/views/station_schedule_handler_filter_schedule_item.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/station/schedule/views/station_schedule_handler_filter_schedule_item.inc,v
retrieving revision 1.1
diff -u -p -r1.1 station_schedule_handler_filter_schedule_item.inc
--- schedule/views/station_schedule_handler_filter_schedule_item.inc	22 Sep 2009 21:56:21 -0000	1.1
+++ schedule/views/station_schedule_handler_filter_schedule_item.inc	12 Sep 2010 19:38:52 -0000
@@ -4,6 +4,6 @@
 class station_schedule_handler_filter_schedule_item extends views_handler_filter_boolean_operator {
   function query() {
     $this->ensure_my_table();
-    $this->query->add_where($this->options['group'], "(SELECT COUNT(*) FROM {station_schedule_item} ssi WHERE ssi.program_nid = $this->table_alias.$this->real_field) " . (empty($this->value) ? '=' : '<>') . " 0");
+    $this->query->add_where($this->options['group'], "(SELECT COUNT(*) FROM {station_schedule_item} ssi WHERE ssi.$this->real_field = $this->table_alias.nid) " . ($this->value ? '=' : '<>') . " 0");
   }
 }
\ No newline at end of file
