* Applied dtx patch to fix access control problem with room aide posting in read...
authorArt Cancro <ajc@citadel.org>
Thu, 19 Mar 2009 03:41:51 +0000 (03:41 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 19 Mar 2009 03:41:51 +0000 (03:41 +0000)
citadel/room_ops.c

index e3720e3cc948490be0f52adf888886c71c0a2805..8f26845dfedf9e86630757eed8d16d0d05f587ae 100644 (file)
@@ -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 */