Fixed mail/file group check when setting area active

This commit is contained in:
Michiel Broek
2004-06-09 19:29:55 +00:00
parent cf6e6157b1
commit 9accf392ed
3 changed files with 6 additions and 2 deletions

View File

@@ -434,7 +434,7 @@ int EditFGrpRec(int Area)
case 11:strncpy(fgroup.AnnGroup, PickNGroup((char *)"8.4.18"), 12);
FgScreen();
break;
case 12:if (CheckFgroup())
case 12:if (fgroup.Active && CheckFgroup())
break;
E_BOOL(17,16, fgroup.Active, "Is this file group ^active^")
case 13:if (CheckFgroup())

View File

@@ -405,7 +405,7 @@ int EditMGrpRec(int Area)
case 10:E_BOOL(16,16, mgroup.UsrDelete, "Allow users to ^Delete^ their messages")
case 11:E_BOOL(17,16, mgroup.Aliases, "Allow ^Aliases^ or real names only")
case 12:E_BOOL(18,16, mgroup.Quotes, "Allow random ^quotes^ to new messages")
case 13:if (CheckMgroup())
case 13:if (mgroup.Active && CheckMgroup())
break;
E_BOOL(19,16, mgroup.Active, "Is this message group ^active^")
case 14:if (CheckMgroup())