From: Art Cancro Date: Mon, 2 Jul 2012 20:55:48 +0000 (-0400) Subject: Include QRmtime in the list of values returned by GOTO X-Git-Tag: v8.13~26^2 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=db43da95b465822391650fb0ddbd94aecdc6a6f0 Include QRmtime in the list of values returned by GOTO --- diff --git a/citadel/room_ops.c b/citadel/room_ops.c index 13ed6ef61..4fb1501cd 100644 --- a/citadel/room_ops.c +++ b/citadel/room_ops.c @@ -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 ); } }