From 5629373d62f7a65f9bbef3a0b664cfc7ee598482 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 27 Feb 2004 05:04:38 +0000 Subject: [PATCH] * fix frameset bug in page popups --- webcit/ChangeLog | 4 +++- webcit/context_loop.c | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index e6ffc70e9..456996639 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 505.8 2004/02/27 05:04:38 ajc +* fix frameset bug in page popups + Revision 505.7 2004/02/26 04:08:56 ajc * Fixed a problem that made WebCit go to the "no cookies" screen instead of the logout banner. @@ -1690,4 +1693,3 @@ 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 e6e1bdbdb..41a468e7a 100644 --- a/webcit/context_loop.c +++ b/webcit/context_loop.c @@ -344,6 +344,7 @@ void context_loop(int sock) || (!strncasecmp(buf, "/login", 6)) || (!strncasecmp(buf, "/page_popup", 11)) || (!strncasecmp(buf, "/page_user", 10)) /* Sometimes this is wrong */ + || (!strncasecmp(buf, "/display_page", 10)) /* Sometimes this is wrong */ || (!strncasecmp(buf, "/listsub", 8)) || (!strncasecmp(buf, "/freebusy", 9)) || (!strncasecmp(buf, "/termquit", 9)) ) { -- 2.39.2