diff options
Diffstat (limited to 'data/config.php.dist')
-rw-r--r-- | data/config.php.dist | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/data/config.php.dist b/data/config.php.dist index c135e8e..0f849e2 100644 --- a/data/config.php.dist +++ b/data/config.php.dist @@ -8,6 +8,13 @@ */ /** + * Array for defaults. + * + * @var array + */ +$defaults = array(); + +/** * The name of this site. * * @var string @@ -116,6 +123,21 @@ $adminemail = 'admin@example.org'; $admin_users = array(); +/*************************************************** + * Bookmarks + */ + +/** + * Default privacy setting for bookmarks. + * 0 - Public + * 1 - Shared with Watchlist + * 2 - Private + * + * @var integer + */ +$defaults['privacy'] = 0; + + /** * You have completed the basic configuration! * More options can be found in config.default.php. |