Skip to content
Snippets Groups Projects
Commit f52dbcb4 authored by rswindell's avatar rswindell
Browse files

When adding a Fido or Internet networked sub-board (e.g. importing from a list...

When adding a Fido or Internet networked sub-board (e.g. importing from a list file), set the "no voting allowed" setting by default.
Only local and QWK-networks supporting voting today.
parent 7667da94
Branches
Tags
No related merge requests found
......@@ -48,6 +48,8 @@ bool new_sub(unsigned new_subnum, unsigned group_num, sub_t* pasted_sub, long mi
/* ToDo: Define these defaults somewhere else: */
new_subboard->misc = (SUB_NSDEF | SUB_SSDEF | SUB_QUOTE | SUB_TOUSER | SUB_FAST);
new_subboard->misc |= misc;
if(new_subboard->misc&(SUB_FIDO | SUB_INET))
new_subboard->misc |= SUB_NOVOTING;
new_subboard->maxmsgs = 500;
/* Use last sub in group (if exists) as a template for new subs */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment