diff options
author | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-08-19 09:03:45 -0500 |
---|---|---|
committer | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-08-19 09:03:45 -0500 |
commit | 46d2d97a378e1fc40359d4eff911d352c9b05c20 (patch) | |
tree | aaf1d43c17be2d10d40dd46bed0c54ab71eb720c /phpBB/includes/ucp/ucp_remind.php | |
parent | 64e6faa877af36f256da12d122e296f45706d359 (diff) | |
parent | af21e38c1d6f3fd738c97bd6cf0f96285c0b35aa (diff) | |
download | forums-46d2d97a378e1fc40359d4eff911d352c9b05c20.tar forums-46d2d97a378e1fc40359d4eff911d352c9b05c20.tar.gz forums-46d2d97a378e1fc40359d4eff911d352c9b05c20.tar.bz2 forums-46d2d97a378e1fc40359d4eff911d352c9b05c20.tar.xz forums-46d2d97a378e1fc40359d4eff911d352c9b05c20.zip |
Merge branch 'ticket/bantu/9611' into develop-olympus
* ticket/bantu/9611:
[ticket/9611] Make length of activation keys variable between 6 and 10.
Diffstat (limited to 'phpBB/includes/ucp/ucp_remind.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_remind.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_remind.php b/phpBB/includes/ucp/ucp_remind.php index f9b792de20..0042cd9df7 100644 --- a/phpBB/includes/ucp/ucp_remind.php +++ b/phpBB/includes/ucp/ucp_remind.php @@ -82,7 +82,7 @@ class ucp_remind $user_password = gen_rand_string(max(8, rand((int) $config['min_pass_chars'], (int) $config['max_pass_chars']))); // For the activation key a random length between 6 and 10 will do. - $user_actkey = gen_rand_string(rand(6, 10)); + $user_actkey = gen_rand_string(mt_rand(6, 10)); $sql = 'UPDATE ' . USERS_TABLE . " SET user_newpasswd = '" . $db->sql_escape(phpbb_hash($user_password)) . "', user_actkey = '" . $db->sql_escape($user_actkey) . "' |