Index: taxonomy_breadcrumb.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_breadcrumb/taxonomy_breadcrumb.install,v
retrieving revision 1.6.2.4
diff -u -r1.6.2.4 taxonomy_breadcrumb.install
--- taxonomy_breadcrumb.install	23 Nov 2009 19:55:12 -0000	1.6.2.4
+++ taxonomy_breadcrumb.install	30 Nov 2009 21:24:41 -0000
@@ -75,20 +75,26 @@
  * Implementation of hook_update().
  */
 function taxonomy_breadcrumb_update_1() {
+  $ret = array();
 
   // Ensure this module's weight is larger than the core taxonomy module.
   // This allows for this module's menu callback for taxonomy/term to get called
   // instead of the core taxonomy/term callback.
   $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'taxonomy_breadcrumb'");
+
   return $ret;
 }
 
 function taxonomy_breadcrumb_update_6001() {
+  $ret = array();
+
   // Ensure this module's weight is larger than the core taxonomy module.
   // This allows for this module's menu callback for taxonomy/term to get called
   // instead of the core taxonomy/term callback.
   $weight = (int) db_result(db_query("SELECT weight FROM {system} WHERE name = 'taxonomy'"));
   db_query("UPDATE {system} SET weight = %d WHERE name = 'taxonomy_breadcrumb'", $weight + 1);
+
+  return $ret;
 }
 
 /**
