Index: station.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/station/station.install,v
retrieving revision 1.12
diff -u -p -r1.12 station.install
--- station.install	19 Apr 2009 21:34:11 -0000	1.12
+++ station.install	19 Apr 2009 22:36:54 -0000
@@ -11,35 +11,16 @@ function station_uninstall() {
   variable_del('station_remote_schedule_url');
 }
 
-
 /**
- * Rename some variables
+ * Implementation of hook_update_last_removed().
  */
-function station_update_1() {
-  _station_var_rename('station_archive_station_url', 'station_remote_station_url');
-  _station_var_rename('station_schedule_archive_url', 'station_remote_archive_url');
-
-  return array();
-}
-
-
-function _station_var_rename($from, $to) {
-  $value = variable_get($from, FALSE);
-  if ($value) {
-    variable_set($to, $value);
-  }
-  variable_del($from);
+function station_update_last_removed() {
+  // We've removed the 5.x-1.x version of mymodule, including database updates.
+  // The next update function is mymodule_update_5200().
+  return 100;
 }
 
 /**
- * Empty update to set a schema number for Drupal 5.0.
- */
-function station_update_100() {
-  return array();
-}
-
-
-/**
  * Rename the module's permissions to make them consistent with core.
  */
 function station_update_6000() {
Index: playlist/station_playlist.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/station/playlist/station_playlist.install,v
retrieving revision 1.9
diff -u -p -r1.9 station_playlist.install
--- playlist/station_playlist.install	19 Apr 2009 22:34:19 -0000	1.9
+++ playlist/station_playlist.install	19 Apr 2009 22:36:54 -0000
@@ -337,7 +337,7 @@ function station_playlist_schema() {
 function station_playlist_update_last_removed() {
   // We've removed the 5.x-1.x version of mymodule, including database updates.
   // The next update function is mymodule_update_5200().
-  return 5110100;
+  return 101;
 }
 
 /**
