From 7469ee06c456a0c7095b038ce810dec0a4decb8a Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Tue, 22 Feb 2005 09:34:04 +0000 Subject: [PATCH] Fixed bug with logbook names containing blanks and 'List' link SVN revision: 1224 --- src/elogd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/elogd.c b/src/elogd.c index 159f3275..215c6ad9 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.571 2005/02/22 09:34:04 ritt + Fixed bug with logbook names containing blanks and 'List' link + Revision 1.570 2005/02/22 08:55:20 ritt Fixed bug with $attachments substitution on shell command @@ -19610,8 +19613,7 @@ void interprete(char *lbook, char *path) /* check for "List" button */ if (strieq(command, loc("List"))) { - sprintf(str, "../%s/", logbook_enc); - redirect(lbs, str); + redirect(lbs, ""); return; }