From 2fc8ea874c9959c24fc66f496521fe85227af1f8 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Thu, 24 Mar 2005 12:54:05 +0000 Subject: [PATCH] Fixed problem with '&' in href links SVN revision: 1274 --- src/elogd.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/elogd.c b/src/elogd.c index 68d75bed..03d143ce 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.596 2005/03/24 12:54:05 ritt + Fixed problem with '&' in href links + Revision 1.595 2005/03/24 10:37:43 ritt Fixed problem with 'protect selection page' ans invalid authentication @@ -5677,7 +5680,15 @@ void rsputs2(const char *str) else sprintf(return_buffer + j, "elog:%s", link, link_text); } else { - sprintf(return_buffer + j, "%s", key_list[l], link, key_list[l]); + sprintf(return_buffer + j, "%s", key_list[l]); j += strlen(return_buffer + j); strlen_retbuf = j;