Index: subscriptions_content.module
===================================================================
--- subscriptions_content.module	(revision 238)
+++ subscriptions_content.module	(working copy)
@@ -310,7 +310,7 @@
     if ($mailkey == SUBSCRIPTIONS_DIGEST_MAILKEY) {
       $separator = db_result(db_query("SELECT item_body FROM {subscriptions_mail_edit} WHERE mailkey = '%s'", SUBSCRIPTIONS_DIGEST_MAILKEY .'-separator'));
       $separator = ($separator ? $separator : SUBSCRIPTIONS_DEFAULT_SEPARATOR);
-      $form['digest_separator'] = array(
+      $form['separator'] = array(
         '#type' => 'textarea',
         '#title' => t('Digest separator'),
         '#default_value' => $separator,
@@ -545,7 +545,7 @@
       db_query("INSERT INTO {subscriptions_mail_edit} (mailkey, item_body) VALUES ('%s', '%s')", SUBSCRIPTIONS_DIGEST_MAILKEY, $form_values['item']);
       db_query("INSERT INTO {subscriptions_mail_edit} (mailkey, item_body) VALUES ('%s', '%s')", SUBSCRIPTIONS_DIGEST_MAILKEY .'-separator', $form_values['separator']);
     } else {
-      db_query("UPDATE {subscriptions_mail_edit} SET item_body = '%s' WHERE mailkey = '%s'", $form_values['body'], SUBSCRIPTIONS_DIGEST_MAILKEY);
+      db_query("UPDATE {subscriptions_mail_edit} SET item_body = '%s' WHERE mailkey = '%s'", $form_values['item'], SUBSCRIPTIONS_DIGEST_MAILKEY);
       db_query("UPDATE {subscriptions_mail_edit} SET item_body = '%s' WHERE mailkey = '%s'", $form_values['separator'], SUBSCRIPTIONS_DIGEST_MAILKEY .'-separator');
     }
     return;
