]> code.citadel.org Git - citadel.git/commitdiff
* Don't print **** when sending a page or mail from an anonymous-only room
authorMichael Hampton <io_error@uncensored.citadel.org>
Fri, 11 Jan 2002 02:57:35 +0000 (02:57 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Fri, 11 Jan 2002 02:57:35 +0000 (02:57 +0000)
citadel/ChangeLog
citadel/messages.c

index a32d491bc44a6284051cbd46dbbe29a5c6c4d0fc..84ec5ef5f3d10ce187dfe4b5b26bfb959ef9df52 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 590.54  2002/01/11 02:57:35  error
+ * Don't print **** when sending a page or mail from an anonymous-only room
+
  Revision 590.53  2002/01/10 21:22:37  ajc
  * Minor changes for global directory service
 
@@ -3127,4 +3130,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
-
index 2ab184a147f9095cde134af551871fc245035d04..5d1b0bf03c875aa9f0e8c8eedf74c5802af84e2b 100644 (file)
@@ -622,7 +622,7 @@ int client_make_message(char *filename,     /* temporary file name */
        fmt_date(datestr, time(NULL), 0);
        header[0] = 0;
 
-       if (room_flags & QR_ANONONLY) {
+       if (room_flags & QR_ANONONLY && !recipient) {
                sprintf(&header[strlen(header)], " ****");
        }
        else {