Skip to content
Snippets Groups Projects
Commit c1adbdaf authored by Eric Oulashin's avatar Eric Oulashin
Browse files

DD Message Area Chooser: Fix for a copy & paste error - Added the canViewDeletedMsgs() function

parent b36e2952
No related branches found
No related tags found
2 merge requests!463MRC mods by Codefenix (2024-10-20),!360DD Message Area Chooser: Fix for a copy & paste error - Added the canViewDeletedMsgs() function
Pipeline #4868 passed
......@@ -3030,6 +3030,14 @@ function isReadableMsgHdr(pMsgHdrOrIdx, pSubBoardCode)
return true;
}
// Returns whether the logged-in user can view deleted messages.
function canViewDeletedMsgs()
{
var usersVDM = ((system.settings & SYS_USRVDELM) == SYS_USRVDELM);
var sysopVDM = ((system.settings & SYS_SYSVDELM) == SYS_SYSVDELM);
return (usersVDM || (user.is_sysop && sysopVDM));
}
// Returns the number of readable messages in a sub-board.
//
// Parameters:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment