mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Fixed URL problem with delete
SVN revision: 251
This commit is contained in:
parent
be5220a0b8
commit
74f80723e7
8
elogd.c
8
elogd.c
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 2.83 2002/09/25 10:33:47 midas
|
||||||
|
Fixed URL problem with delete
|
||||||
|
|
||||||
Revision 2.82 2002/09/24 15:16:05 midas
|
Revision 2.82 2002/09/24 15:16:05 midas
|
||||||
Version 2.2.0
|
Version 2.2.0
|
||||||
|
|
||||||
@ -5570,7 +5573,10 @@ char str[256], in_reply_to[80], reply_to[256];
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* header */
|
/* header */
|
||||||
sprintf(str, "%d", message_id);
|
if (message_id)
|
||||||
|
sprintf(str, "%d", message_id);
|
||||||
|
else
|
||||||
|
str[0] = 0;
|
||||||
show_standard_header("Delete ELog entry", str);
|
show_standard_header("Delete ELog entry", str);
|
||||||
|
|
||||||
rsprintf("<p><p><p><table border=%s width=50%% bgcolor=%s cellpadding=1 cellspacing=0 align=center>",
|
rsprintf("<p><p><p><table border=%s width=50%% bgcolor=%s cellpadding=1 cellspacing=0 align=center>",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user