1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

Various updates and fixes ... no doubt there are new bugs but where would the fun be without them?

git-svn-id: file:///svn/phpbb/trunk@4090 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-06-06 15:23:50 +00:00
parent 8a09c0d75f
commit d1dd262f83
12 changed files with 222 additions and 181 deletions

View File

@@ -36,6 +36,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_name_chars','3
INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_name_chars','30');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_pass_chars','6');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_pass_chars','30');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_ratings','10');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_length','3600');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename','yourdomain.com');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc','A _little_ text to describe your forum');
@@ -94,6 +95,8 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('require_activation
INSERT INTO phpbb_config (config_name, config_value) VALUES ('flood_interval','15');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_interval','0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_filesize','6144');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_width','20');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_height','20');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_width','90');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_height','90');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_enable','1');

View File

@@ -868,6 +868,7 @@ CREATE TABLE phpbb_users (
user_allow_email tinyint(1) DEFAULT '1' NOT NULL,
user_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL,
user_allow_viewemail tinyint(1) DEFAULT '1' NOT NULL,
user_allow_massemail tinyint(1) DEFAULT '1' NOT NULL,
user_avatar varchar(100) DEFAULT '' NOT NULL,
user_avatar_type tinyint(2) DEFAULT '0' NOT NULL,
user_avatar_width tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,