Skip to content
Snippets Groups Projects
Commit a3a47550 authored by deuce's avatar deuce
Browse files

Fix inverted logic in last commit.

parent f41d8942
Branches
Tags
No related merge requests found
......@@ -675,7 +675,7 @@ int sbbs_t::scanposts(uint subnum, long mode, const char *find)
smb_unlocksmbhdr(&smb);
}
if(msg_attr & MSG_DELETE) {
if(!(cfg.sys_misc&SM_SYSVDELM))
if(cfg.sys_misc&SM_SYSVDELM)
domsg=0; // If you can view deleted messages, don't redisplay.
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment