Include QRmtime in the list of values returned by GOTO
authorArt Cancro <ajc@uncensored.citadel.org>
Mon, 2 Jul 2012 20:55:48 +0000 (16:55 -0400)
committerArt Cancro <ajc@uncensored.citadel.org>
Mon, 2 Jul 2012 20:55:48 +0000 (16:55 -0400)
citadel/room_ops.c

index 13ed6ef610ffaaff2eef16f6e965382b7e032b30..4fb1501cdf66f3ec77345144146f61a4dddd7ee6 100644 (file)
@@ -1039,7 +1039,7 @@ void CtdlUserGoto(char *where, int display_result, int transiently,
        CCC->curr_view = (int)vbuf.v_view;
 
        if (display_result) {
-               cprintf("%d%c%s|%d|%d|%d|%d|%ld|%ld|%d|%d|%d|%d|%d|%d|%d|%d|\n",
+               cprintf("%d%c%s|%d|%d|%d|%d|%ld|%ld|%d|%d|%d|%d|%d|%d|%d|%d|%ld|\n",
                        CIT_OK, CtdlCheckExpress(),
                        truncated_roomname,
                        (int)new_messages,
@@ -1055,7 +1055,8 @@ void CtdlUserGoto(char *where, int display_result, int transiently,
                        (int)vbuf.v_view,
                        (int)CCC->room.QRdefaultview,
                        (int)is_trash,
-                       (int)CCC->room.QRflags2
+                       (int)CCC->room.QRflags2,
+                       (long)CCC->room.QRmtime
                );
        }
 }