From 6c242729b904b33de8fbeb9675e0b0a67f4c4355 Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 20 Mar 2020 07:54:56 -0700 Subject: [PATCH] Closes #4107 - hide email by default when creating a new user. --- e107_core/sql/core_sql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_core/sql/core_sql.php b/e107_core/sql/core_sql.php index b1a1ce578..47c344923 100755 --- a/e107_core/sql/core_sql.php +++ b/e107_core/sql/core_sql.php @@ -545,7 +545,7 @@ CREATE TABLE user ( user_email varchar(100) NOT NULL default '', user_signature text NOT NULL, user_image varchar(255) NOT NULL default '', - user_hideemail tinyint(3) unsigned NOT NULL default '0', + user_hideemail tinyint(3) unsigned NOT NULL default 1, user_join int(10) unsigned NOT NULL default '0', user_lastvisit int(10) unsigned NOT NULL default '0', user_currentvisit int(10) unsigned NOT NULL default '0',