From abe1ab11b1285075837524cabc352d88c98884b7 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sat, 7 Feb 2009 05:34:14 +0000 Subject: [PATCH] * save_inetconf was clobbering the screen. Fixed it by registering it as an ordinary URL handler instead of AJAX. --- webcit/inetconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/inetconf.c b/webcit/inetconf.c index 1d3c68beb..ee1daf4b1 100644 --- a/webcit/inetconf.c +++ b/webcit/inetconf.c @@ -206,7 +206,7 @@ void InitModule_INETCONF (void) { - WebcitAddUrlHandler(HKEY("save_inetconf"), new_save_inetconf, AJAX); + WebcitAddUrlHandler(HKEY("save_inetconf"), new_save_inetconf, 0); RegisterIterator("SERVCFG:INET", 1, NULL, GetInetConfHash, InetCfgSubst, NULL, CTX_INETCFG, CTX_NONE, IT_NOFLAG); RegisterNamespace("SERVCFG:FLUSHINETCFG",0, 0, DeleteInetConfHash, CTX_NONE); } -- 2.30.2