X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fnotes.c;h=ffd6f33af9ce8a9e67d9f9723764cd9122652302;hb=1b490c6d558eb7dca490675e4a603a61e02b51a0;hp=f6e295154f78339c24061f312f46f0bc202d5e3d;hpb=993bf094e7a8c894bfe3f6937756956ec2eeaa22;p=citadel.git diff --git a/webcit/notes.c b/webcit/notes.c index f6e295154..ffd6f33af 100644 --- a/webcit/notes.c +++ b/webcit/notes.c @@ -23,8 +23,7 @@ void display_note(long msgnum) int in_text = 0; int i, len; - wprintf("\n"); - +// wprintf("\n"); serv_printf("MSG0 %ld", msgnum); serv_getln(buf, sizeof buf); if (buf[0] != '1') { @@ -58,6 +57,26 @@ void display_note(long msgnum) /** Make it HTML-happy and print it. */ stresc(display_notetext, SIZ, notetext, 0, 0); +/* Lets try it as a draggable */ + if (!IsEmptyStr(eid)) { + wprintf ("\"Note\"\n"); + wprintf ("\n"); + } + else { + wprintf ("\n"); + wprintf ("\n"); + } + if (!IsEmptyStr(eid)) { wprintf("%s
\n", eid, display_notetext); }