From 914c54024424942987b60b4fbffdfcb3d487df48 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Tue, 18 Jun 2002 07:32:03 +0000 Subject: [PATCH] Add logbook name when URL is specified SVN revision: 131 --- elogd.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/elogd.c b/elogd.c index 236e0706..e9d61e0f 100755 --- a/elogd.c +++ b/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 2.23 2002/06/18 07:32:03 midas + Add logbook name when URL is specified + Revision 2.22 2002/06/18 07:22:28 midas Removed width from logbook selection page @@ -6040,10 +6043,13 @@ int i, j, n, missing, first, index, n_attr, n_mail, suppress, message_id; sprintf(str, "http://%s/", host_name); else sprintf(str, "http://%s:%d/", host_name, tcp_port); + + strcat(str, lbs->name); + strcat(str, "/"); } } - sprintf(mail_text+strlen(mail_text), "\r\n%s URL : %s%d\r\n", + sprintf(mail_text+strlen(mail_text), "\r\n%s URL : %s%d\r\n", loc("Logbook"), str, message_id); if (getcfg(lbs->name, "Email message body", str) &&