From: Art Cancro Date: Thu, 19 Mar 2009 03:41:51 +0000 (+0000) Subject: * Applied dtx patch to fix access control problem with room aide posting in read... X-Git-Tag: v7.86~1338 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=39ccce5ef3b61e2c0f35ba1fc08804e1c2e8d29c * Applied dtx patch to fix access control problem with room aide posting in read only rooms --- 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 */