diff options
Diffstat (limited to 'config.inc.php.example')
-rw-r--r-- | config.inc.php.example | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.inc.php.example b/config.inc.php.example index 648f03d..ce7bcde 100644 --- a/config.inc.php.example +++ b/config.inc.php.example @@ -84,6 +84,9 @@ $dbname = 'scuttle'; # filetypes : An array of bookmark extensions that Scuttle should # add system tags for. # reservedusers : An array of usernames that cannot be registered +# +# antispamQuestion: A question to avoid spam +# antispamAnswer: The answer to the question (users have to put exactly the same answer) ###################################################################### $sitename = 'SemanticScuttle'; @@ -118,5 +121,8 @@ $filetypes = array( ); $reservedusers = array('all', 'watchlist'); +$antispamQuestion = 'Put here the answer to 1 + 2 + 3'; +$antispamAnswer = '6'; + include_once('debug.inc.php'); ?> |