* Implemented "access level required to create rooms"
authorArt Cancro <ajc@citadel.org>
Thu, 8 Apr 1999 01:52:09 +0000 (01:52 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 8 Apr 1999 01:52:09 +0000 (01:52 +0000)
webcit/ChangeLog
webcit/siteconfig.c

index 0a9f8a42ef66504c50f127d54692bb8558f16c88..5f45dd859a7f8783af322c38d9440979ce70128f 100644 (file)
@@ -1,3 +1,6 @@
+Wed Apr  7 21:51:33 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Implemented "access level required to create rooms"
+
 Thu Mar 18 00:23:05 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * webcit.c: modified getz() to *exit* the program when fgets()
          returns an error.  This is actually the desired behavior; it would
index 2fe47538750c2de4c3434dfb977da128028b70d8..58848abd5e0d8edb787b6531303ac5f98e2fd824 100644 (file)
@@ -133,6 +133,11 @@ void display_siteconfig(void)
                        wprintf("<INPUT TYPE=\"text\" NAME=\"c_logpages\" MAXLENGTH=\"63\" VALUE=\"%s\">", buf);
                        wprintf("</TD></TR>\n");
                        break;
+               case 20:
+                       wprintf("<TR><TD>Access level required to create rooms</TD><TD>");
+                       wprintf("<INPUT TYPE=\"text\" NAME=\"c_createax\" MAXLENGTH=\"1\" VALUE=\"%s\">", buf);
+                       wprintf("</TD></TR>\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.");
 }