Index: archive/station_archive.module
===================================================================
--- archive/station_archive.module	(revision 153)
+++ archive/station_archive.module	(working copy)
@@ -1,5 +1,5 @@
 <?php
-// $Id: station_archive.module,v 1.50 2010/01/31 21:53:57 drewish Exp $
+// $Id: station_archive.module,v 1.51 2010/09/13 18:54:05 timplunkett Exp $
 
 /**
  * Implementation of hook_help().
@@ -147,10 +147,10 @@
         // If it's in the archives, set the menu appropriately
         if ($page && !$teaser && isset($node->station_archive)) {
           $breadcrumb = array(
-             l(t('Home'), NULL),
-             l(t('Station'), 'station'),
-             l(t('Archives'), 'station/archives'),
-             l($node->station_archive['program_title'], 'station/archives/'. $node->station_archive['program_nid']),
+            l(t('Home'), NULL),
+            l(t('Station'), 'station'),
+            l(t('Archives'), 'station/archives'),
+            l($node->station_archive['program_title'], 'station/archives/'. $node->station_archive['program_nid']),
           );
           drupal_set_breadcrumb($breadcrumb);
 
@@ -565,7 +565,7 @@
  * @return
  *   Array with day and hour term ids.
  *
- * @see station_local_ts().
+ * @see station_local_ts()
  */
 function _station_archive_get_taxonomy($local_timestamp) {
   $vid = _station_archive_get_vid();
Index: archive/scripts/ripper.php
===================================================================
--- archive/scripts/ripper.php	(revision 153)
+++ archive/scripts/ripper.php	(working copy)
@@ -1,7 +1,7 @@
 #!/usr/local/bin/php -q
 <?php
 
-// $Id: ripper.php,v 1.10 2009/11/28 22:17:27 drewish Exp $
+// $Id: ripper.php,v 1.11 2010/09/13 18:54:05 timplunkett Exp $
 
 /**
  * This script is designed to be run by a cron job or windows scheduled task.
@@ -48,7 +48,7 @@
 
 // Download the stream
 $stream_url = $settings['stream_url'];
-$file_format = strtolower($settings['file_format']);
+$file_format = drupal_strtolower($settings['file_format']);
 exec("{$streamripper} {$stream_url} -s -d {$import_dir} -A -l {$length} -a {$start_time}.{$file_format} --quiet");
 
 // stream ripper creates the .cue file. we'll use its absence as a signal
Index: schedule/station_schedule.module
===================================================================
--- schedule/station_schedule.module	(revision 153)
+++ schedule/station_schedule.module	(working copy)
@@ -1,5 +1,5 @@
 <?php
-// $Id: station_schedule.module,v 1.96 2010/07/09 21:04:36 timplunkett Exp $
+// $Id: station_schedule.module,v 1.97 2010/09/13 18:54:05 timplunkett Exp $
 
 /**
  * Implementation of hook_help().
@@ -74,7 +74,7 @@
   // may return index values that are not sorted.
   $weight = 0;
   foreach (station_day_name() as $day => $dayname) {
-    $items['node/%node/view/'. strtolower($dayname)] = array(
+    $items['node/%node/view/'. drupal_strtolower($dayname)] = array(
       'title' => substr($dayname, 0, 3),
       'page callback' => 'station_schedule_day_page',
       'page arguments' => array(1, $dayname),
Index: schedule/station_schedule.pages.inc
===================================================================
--- schedule/station_schedule.pages.inc	(revision 153)
+++ schedule/station_schedule.pages.inc	(working copy)
@@ -1,11 +1,11 @@
 <?php
-// $Id: station_schedule.pages.inc,v 1.9 2010/07/06 23:54:09 timplunkett Exp $
+// $Id: station_schedule.pages.inc,v 1.10 2010/09/13 18:54:05 timplunkett Exp $
 
 /**
  * Redirect the visitor to the schedule's current day view.
  */
 function station_schedule_goto_today($schedule) {
-  drupal_goto('node/'. $schedule->nid .'/view/'. strtolower(station_day_name(date('w'))));
+  drupal_goto('node/'. $schedule->nid .'/view/'. drupal_strtolower(station_day_name(date('w'))));
 }
 
 function theme_station_schedule_hour($hour) {
