From 6a295632b180044b9f35920efc1c1d2034d7d32e Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Mon, 28 Jul 2003 15:24:27 +0000 Subject: [PATCH] Fixed bug with elog:/n reference SVN revision: 600 --- src/elogd.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/elogd.c b/src/elogd.c index a6dd6982..6952fcc3 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.141 2003/07/28 15:24:27 midas + Fixed bug with elog:/n reference + Revision 1.140 2003/07/25 08:34:52 midas Fixed bugs in HTML code @@ -12823,7 +12826,10 @@ FILE *f; show_error(str); } else - redirect(lbs, attachment); + { + sprintf(str, "../%s", attachment); + redirect(lbs, str); + } return; }