From 1bd8f2cfce1a09bc4dc0a31f0519e3bace2b22cc Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 25 Feb 2004 23:10:28 +0000 Subject: [PATCH] * Allow "/do_logout" as a no-frames page --- webcit/ChangeLog | 4 ++++ webcit/context_loop.c | 1 + 2 files changed, 5 insertions(+) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index ab1f7698c..5ad9a9165 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 505.5 2004/02/25 23:10:28 ajc +* Allow "/do_logout" as a no-frames page + Revision 505.4 2004/02/25 23:00:21 ajc * Changed the favicon support to LINK tags in the HEAD of static stuff, to make life easier. (Thanks to prosthetik for this) @@ -1678,3 +1681,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/context_loop.c b/webcit/context_loop.c index 3e3302a1b..5ac2ddaa7 100644 --- a/webcit/context_loop.c +++ b/webcit/context_loop.c @@ -337,6 +337,7 @@ void context_loop(int sock) || (!strcasecmp(buf, "/static/mainframeset.html")) || (!strcasecmp(buf, "/static/robots.txt")) || (!strncasecmp(buf, "/do_welcome", 11)) + || (!strncasecmp(buf, "/do_logout", 10)) || (!strncasecmp(buf, "/page_popup", 11)) || (!strncasecmp(buf, "/page_user", 10)) /* Sometimes this is wrong */ || (!strncasecmp(buf, "/listsub", 8)) -- 2.39.2