]> code.citadel.org Git - citadel.git/commitdiff
* Placated users who whine about privacy policy by adding MESG ROOMACCESS to
authorArt Cancro <ajc@citadel.org>
Thu, 28 Jun 2001 02:39:54 +0000 (02:39 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 28 Jun 2001 02:39:54 +0000 (02:39 +0000)
  the screen where you can create a room...

webcit/ChangeLog
webcit/roomops.c

index ea0febbc9dbb827c34263b778503b4e56cf9e47a..89b84afbff28597bd97ea4f9a07d4f3ea16b2e99 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 300.1  2001/06/28 02:39:54  ajc
+* Placated users who whine about privacy policy by adding MESG ROOMACCESS to
+  the screen where you can create a room...
+
 Revision 300.0  2001/06/27 06:24:06  ajc
 * Tagged everything as Version 3.00
 
@@ -592,4 +596,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
index 7e93e37daa8a77f88bc8c9b48301284ba760fe31..36db3899f3edd53d3c795807e6ed01545299b9e4 100644 (file)
@@ -1055,7 +1055,12 @@ void display_entroom(void)
        wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"OK\">");
        wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\">");
        wprintf("</CENTER>\n");
-       wprintf("</FORM>\n");
+       wprintf("</FORM>\n<HR>");
+       serv_printf("MESG roomaccess");
+       serv_gets(buf);
+       if (buf[0] == '1') {
+               fmout(NULL);
+       }
        wDumpContent(1);
 }