From be14f2c28f18cedfa7980e16f6e9168f9ae55042 Mon Sep 17 00:00:00 2001 From: Dave West Date: Sun, 4 Nov 2007 16:46:15 +0000 Subject: [PATCH] Added a delete button to the Notes in place editor. Can't for the life of me figure out how to pass a delete/save option though. Any help much appreciated. --- webcit/notes.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/webcit/notes.c b/webcit/notes.c index 90f03848e..f6e295154 100644 --- a/webcit/notes.c +++ b/webcit/notes.c @@ -90,14 +90,12 @@ void updatenote(void) int in_text = 0; int i, len; - serv_printf("ENT0 1||0|0||||||%s", bstr("eid")); serv_getln(buf, sizeof buf); if (buf[0] == '4') { text_to_server(bstr("value")); serv_puts("000"); } - lprintf(1, "eid=%s, value=\"%s\"\n", bstr("eid"), bstr("value")); begin_ajax_response(); msgnum = locate_message_by_uid(bstr("eid")); -- 2.30.2