From 39ccce5ef3b61e2c0f35ba1fc08804e1c2e8d29c Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 19 Mar 2009 03:41:51 +0000 Subject: [PATCH] * Applied dtx patch to fix access control problem with room aide posting in read only rooms --- citadel/room_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/room_ops.c b/citadel/room_ops.c index e3720e3cc..8f26845df 100644 --- a/citadel/room_ops.c +++ b/citadel/room_ops.c @@ -181,7 +181,7 @@ void CtdlRoomAccess(struct ctdlroom *roombuf, struct ctdluser *userbuf, if ( (userbuf->axlevel >= 6) || (userbuf->usernum == roombuf->QRroomaide) ) { - retval = retval | UA_ADMINALLOWED | UA_DELETEALLOWED; + retval = retval | UA_ADMINALLOWED | UA_DELETEALLOWED | UA_POSTALLOWED; } NEWMSG: /* By the way, we also check for the presence of new messages */ -- 2.30.2