From 6a6fd4860fab1d2460532810767bd574e98ef42c Mon Sep 17 00:00:00 2001 From: ajc 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. git-svn-id: svn://uncensored.citadel.org/trunk@7075 c9418f8e-8c02-0410-9258-ad310909226a --- webcit/inetconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/inetconf.c b/webcit/inetconf.c index 1d3c68be..ee1daf4b 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.11.4.GIT