After adding more than one message to a set, you can only EDIT the first message from the Messages list page (admin/settings/autoresponder/mail/list). This is because the message set ID and the message ID are reversed in the edit setup line. The fix is to change line 758 in autoresponder.module from
l(t('Edit'), 'admin/settings/autoresponder/mail/edit/' . $mail->mset . '/' . $mail->id),
to
l(t('Edit'), 'admin/settings/autoresponder/mail/edit/' . $mail->id . '/' . $mail->mset),
Comments
Comment #1
swmerrill commentedI haven't tested it, but presumably the same problem applies to the DELETE code on the subsequent line as well. The fix should be similar.
Comment #2
dantodd commentedI've experienced this bug. I think that the problem is that the edit page always gets the first mailing's content. The title appears to be ok.
Comment #3
aleksey.tk commentedFixed in dev version.