--- update_status_notifier.module 2008-03-25 20:05:13.000000000 +0100 +++ update_status_notifier.patch.module 2008-04-04 14:25:30.000000000 +0200 @@ -54,8 +54,9 @@ function update_status_notifier_cron() { function update_status_notifier_settings() { $form['update_status_notifier_details'] = array( - '#value' => t("The MD5sum of your Drupal key is:") ." ". md5(variable_get('drupal_private_key', 0)), + '#value' => t("The MD5sum of your Drupal key is:") ." ". md5(variable_get('site_name', 0) . drupal_get_private_key()), ); + $form['update_notifier_server'] = array( '#type' => 'textfield', '#title' => t('Remote site XML-RPC address'), @@ -76,7 +77,7 @@ function update_status_notifier_xml_stat if ($available = update_status_get_available(TRUE)) { $data = update_status_calculate_project_data($available); $pack = array(); - $pack['key'] = md5(variable_get('drupal_private_key', 0)); + $pack['key'] = md5(variable_get('site_name', 0). drupal_get_private_key()); foreach ($data as $project) { $pack['modules'][$project['short_name']] = $project['status']; }