diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-05-21 19:10:04 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-05-21 19:10:04 +0000 |
commit | 394b2d160a33d8545592cc3ec776a39f5876051b (patch) | |
tree | 60a5f57a0e62a03430b6f48c144c61bc57bd53d8 /phpBB/install | |
parent | db4f5c970b9f2fb8664a151bc14d387c2c95ef5c (diff) | |
download | forums-394b2d160a33d8545592cc3ec776a39f5876051b.tar forums-394b2d160a33d8545592cc3ec776a39f5876051b.tar.gz forums-394b2d160a33d8545592cc3ec776a39f5876051b.tar.bz2 forums-394b2d160a33d8545592cc3ec776a39f5876051b.tar.xz forums-394b2d160a33d8545592cc3ec776a39f5876051b.zip |
Added max_quote_depth limiter to prevent users from nesting a hell lot of quotes
git-svn-id: file:///svn/phpbb/trunk@4041 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/schemas/mysql_basic.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_basic.sql b/phpBB/install/schemas/mysql_basic.sql index d898617052..2a84135832 100644 --- a/phpBB/install/schemas/mysql_basic.sql +++ b/phpBB/install/schemas/mysql_basic.sql @@ -64,6 +64,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('browser_check', '1 INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '2.1.1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_chars', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_smilies', '0'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_quote_depth', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_chars','255'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_poll_options','10'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_search_chars','3'); |