Show
Ignore:
Timestamp:
02/19/06 18:55:30 (3 years ago)
Author:
ben
Message:

The default access restriction is now 'logged in users'. Furthermore, default access restrictions for an Elgg site can now be set in includes.php - either public, logged in users, or private.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/includes.php

    r227 r260  
    2929                // Elgg site. 
    3030                        define("public_reg", true); 
     31                // The following sets the default access level within the Elgg 
     32                // site. Possible values include: 
     33                //              PUBLIC          :: available to everyone 
     34                //              LOGGED_IN       :: available to logged in users only 
     35                //              PRIVATE         :: available to the user only 
     36                        define("default_access", "LOGGED_IN"); 
     37                         
    3138                // Whether to display verbose error information. This is intended mainly  
    3239                // for Elgg developers, and should normally be set to false.