Update 6102 does not return an array (e.g. $ret), therefore update.php upchucks (warning: array_merge() [function.array-merge]: Argument #2 is not an array in C:\wamp\www\drupal6\update.php on line 174.).

/**
 * Clear the cache to get the updates to hook_menu().
 */
function contemplate_update_6102() {
  $ret = array();

  cache_clear_all();
  $ret[] = array('success' => TRUE, 'query' => t('Caches cleared.'));

  return $ret;
}

Comments

dgtlmoon’s picture

Status: Active » Closed (cannot reproduce)

appears to be fixed in current 6.x-1.x dev, I re-ran the update and no problems came from it

The following queries were executed
contemplate module
Update #6102

    * No queries

6102 looks like

/**
 * clear the cache to get the updates to hook_menu().
 */
function contemplate_update_6102() {
  cache_clear_all();
  return array();
}