* save_inetconf was clobbering the screen. Fixed it by registering it as an ordinary...
authorArt Cancro <ajc@citadel.org>
Sat, 7 Feb 2009 05:34:14 +0000 (05:34 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 7 Feb 2009 05:34:14 +0000 (05:34 +0000)
webcit/inetconf.c

index 1d3c68beb3918c3c75963664a170cf5f349321e7..ee1daf4b11c91eaac5f98dd63d0e9bbfcabc9e65 100644 (file)
@@ -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);
 }