diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2009-06-19 12:31:28 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2009-06-19 12:31:28 +0000 |
commit | 5d9cf2aa41c61dd35114223006c5e16c104c5a2b (patch) | |
tree | b583094c75a582c88696ed54969406ee933446ea /phpBB/develop | |
parent | d7d96223e7bae7cd60b13c6e7896d95838c3633c (diff) | |
download | forums-5d9cf2aa41c61dd35114223006c5e16c104c5a2b.tar forums-5d9cf2aa41c61dd35114223006c5e16c104c5a2b.tar.gz forums-5d9cf2aa41c61dd35114223006c5e16c104c5a2b.tar.bz2 forums-5d9cf2aa41c61dd35114223006c5e16c104c5a2b.tar.xz forums-5d9cf2aa41c61dd35114223006c5e16c104c5a2b.zip |
Make captchas stricter by oly having one entry per session; fix a bug in ucp_register that caused three captcha instances to be generated. Non-MySQL databases and garbage collecting needs extensive testing.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9626 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index 05f1b217a4..e605d60a88 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -983,6 +983,7 @@ function get_schema_struct() 'confirm_type' => array('TINT:3', 0), 'code' => array('VCHAR:8', ''), 'seed' => array('UINT:10', 0), + 'attempts' => array('UINT', 0), ), 'PRIMARY_KEY' => array('session_id', 'confirm_id'), 'KEYS' => array( |