From af85a621995c79a42043161f8ab7d006fca0beb1 Mon Sep 17 00:00:00 2001 From: plegall Date: Wed, 26 Jun 2019 16:05:42 +0200 Subject: [PATCH] fixes #1038 deactivate user comments by default --- install/config.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/config.sql b/install/config.sql index 9ab93744f..4bdd9d664 100644 --- a/install/config.sql +++ b/install/config.sql @@ -1,6 +1,6 @@ -- initial configuration for Piwigo -INSERT INTO piwigo_config (param,value,comment) VALUES ('activate_comments','true','Global parameter for usage of comments system'); +INSERT INTO piwigo_config (param,value,comment) VALUES ('activate_comments','false','Global parameter for usage of comments system'); INSERT INTO piwigo_config (param,value,comment) VALUES ('nb_comment_page','10','number of comments to display on each page'); INSERT INTO piwigo_config (param,value,comment) VALUES ('log','true','keep an history of visits on your website'); INSERT INTO piwigo_config (param,value,comment) VALUES ('comments_validation','false','administrators validate users comments before becoming visible');