1 defines permission if user has right "key". # # Typical setups are: # # Everything goes (this is the default behaviour): # $wgWhitelistEdit = false; # $wgWhitelistRead = false; # $wgWhitelistAccount = array ( "user" => 1, "sysop" => 1, "developer" => 1 ); # # Invitation-only closed shop type of system # $wgWhitelistEdit = true; # $wgWhitelistRead = true; # $wgWhitelistAccount = array ( "user" => 0, "sysop" => 1, "developer" => 1 ); # # Public website, closed editorial team # $wgWhitelistEdit = true; # $wgWhitelistRead = false; # $wgWhitelistAccount = array ( "user" => 0, "sysop" => 1, "developer" => 1 ); ?>