From 75b7fe37385f3b354d0ce77790e0066fd293ad0f Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Wed, 19 May 2004 20:27:50 +0000 Subject: [PATCH] Added
and
to be recognized as HTML in attributes SVN revision: 877 --- src/elogd.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/elogd.c b/src/elogd.c index f2c6d22a..1952740c 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.327 2004/05/19 20:27:50 midas + Added
and
to be recognized as HTML in attributes + Revision 1.326 2004/05/18 21:46:08 midas Allow ',' and '.' and '-' for numeric format @@ -4475,7 +4478,12 @@ int is_html(char *s) return TRUE; } - if (strstr(str, "')) { + if (strstr(str, "
")) { + free(str); + return TRUE; + } + + if (strstr(str, "
")) { free(str); return TRUE; }