From ed33aa34e0f991c5fb902bcd9662b1f33439ee75 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Thu, 27 Mar 2003 13:05:28 +0000 Subject: [PATCH] Removed borders around icons in threaded display SVN revision: 458 --- src/elogd.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/elogd.c b/src/elogd.c index 0189b0a1..32c54dc4 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.57 2003/03/27 13:05:28 midas + Removed borders around icons in threaded display + Revision 1.56 2003/03/26 11:45:31 midas Added text search in all attributes @@ -6755,7 +6758,7 @@ FILE *f; { /* if top level only, display reply icon if message has a reply */ if (getcfg(lbs->name, "Top level only", str) && atoi(str) == 1 && reply_to[0]) - rsprintf(" ", ref); + rsprintf(" ", ref); else { /* display standard icons */ @@ -6918,7 +6921,7 @@ FILE *f; else if (attr_flags[i] & AF_ICON) { if (attrib[i][0]) - rsprintf("  ", attrib[i]); + rsprintf("  ", attrib[i]); } else @@ -6948,7 +6951,7 @@ FILE *f; { rsprintf("", sclass); if (attrib[i][0]) - rsprintf("", attrib[i]); + rsprintf("", attrib[i]); rsprintf(" "); } @@ -8420,7 +8423,8 @@ LOGBOOK *lbs_cur; /*---- header ----*/ - show_standard_header(lbs, TRUE, loc("ELOG Entries"), NULL); + sprintf(str, "ELOG %s", lbs->name); + show_standard_header(lbs, TRUE, str, NULL); /*---- title ----*/