From 55b9d9c891c4063336a8d610b6bdfb5d1752c31b Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 8 Apr 1999 01:52:09 +0000 Subject: [PATCH] * Implemented "access level required to create rooms" --- webcit/ChangeLog | 3 +++ webcit/siteconfig.c | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 0a9f8a42e..5f45dd859 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,3 +1,6 @@ +Wed Apr 7 21:51:33 EDT 1999 Art Cancro + * Implemented "access level required to create rooms" + Thu Mar 18 00:23:05 EST 1999 Art Cancro * webcit.c: modified getz() to *exit* the program when fgets() returns an error. This is actually the desired behavior; it would diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index 2fe475387..58848abd5 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -133,6 +133,11 @@ void display_siteconfig(void) wprintf("", buf); wprintf("\n"); break; + case 20: + wprintf("Access level required to create rooms"); + wprintf("", buf); + wprintf("\n"); + break; } } @@ -177,6 +182,7 @@ void siteconfig(void) serv_printf("%s", bstr("c_userpurge")); serv_printf("%s", bstr("c_roompurge")); serv_printf("%s", bstr("c_logpages")); + serv_printf("%d", bstr("c_createax")); serv_printf("000"); display_success("System configuration has been updated."); } -- 2.39.2