Index: fivestar.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/fivestar/fivestar.install,v
retrieving revision 1.5.2.11
diff -u -r1.5.2.11 fivestar.install
--- fivestar.install	14 Mar 2009 00:15:08 -0000	1.5.2.11
+++ fivestar.install	30 Apr 2009 02:55:40 -0000
@@ -195,12 +195,17 @@
  * Belated update for Drupal 6: Re-enable Fivestar CCK fields.
  */
 function fivestar_update_6105() {
+  $ret = array();
+
+  if (!module_exists('content')) {
+    $ret[] = array('success' => TRUE, 'query' => t('CCK is not installed. No update ran.'));
+    return $ret;
+  }
+
   if ($abort = content_check_update('fivestar')) {
     return $abort;
   }
 
-  $ret = array();
-
   // All CCK fields are disabled by Content module during the D6 upgrade.
   // Re-enable the Fivestar fields.
   module_load_include('inc', 'fivestar', 'fivestar_field');
