From be4ed109f927b2e942ac39ac7ed9d8170a89f56a Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Mon, 19 Dec 2005 14:50:46 +0000 Subject: [PATCH] Fixed double entries with inline images SVN revision: 1575 --- src/elogd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/elogd.c b/src/elogd.c index 6f391604..d405396a 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -18572,14 +18572,14 @@ void submit_elog(LOGBOOK * lbs) p = getparam("text"); sprintf(str, "elog:%d/", message_id); strsubst(p, TEXT_SIZE, "elog:/", str); - el_submit(lbs, message_id, bedit, date, attr_list, attrib, n_attr, + el_submit(lbs, message_id, TRUE, date, attr_list, attrib, n_attr, p, in_reply_to, reply_to, isparam("encoding") ? getparam("encoding") : "plain", att_file, TRUE, NULL); } /*---- email notifications ----*/ - suppress = isparam("suprress") ? atoi(getparam("suppress")) : 0; + suppress = isparam("suppress") ? atoi(getparam("suppress")) : 0; if (getcfg(lbs->name, "Suppress default", str, sizeof(str)) && atoi(str) == 3) suppress = 3;