]> code.citadel.org Git - citadel.git/commitdiff
* Fixed bug that created incorrect roomnames when sending pages
authorArt Cancro <ajc@citadel.org>
Sun, 11 Mar 2001 20:06:53 +0000 (20:06 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 11 Mar 2001 20:06:53 +0000 (20:06 +0000)
citadel/ChangeLog
citadel/serv_chat.c

index 2887d21b23756d3e03ebd1234385f780e3290371..d9ddcf8d67af08c27317c396d8e015ddd202df2c 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 573.112  2001/03/11 20:06:53  ajc
+ * Fixed bug that created incorrect roomnames when sending pages
+
  Revision 573.111  2001/03/11 19:23:32  ajc
  * IMAP DELETE command ... also split up access control for room delete cmds
 
@@ -2447,3 +2450,4 @@ 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 03473dd970531db0c1632987b207574d067fc8ec..be0b527f986ce399085fda4a78712e4258dcac67 100644 (file)
@@ -574,8 +574,7 @@ int send_express_message(char *lun, char *x_user, char *x_msg)
                /* Save a copy of the message in the sender's log room,
                 * creating the room if necessary.
                 */
-               MailboxName(roomname, &CC->usersupp, PAGELOGROOM);
-               create_room(roomname, 4, "", 0, 1);
+               create_room(PAGELOGROOM, 4, "", 0, 1);
                msgnum = CtdlSaveMsg(logmsg, "", roomname, MES_LOCAL);
 
                /* Now save a copy in the global log room, if configured */