aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_remind.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-05-17 08:54:51 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-05-17 08:54:51 +0200
commitaf21e38c1d6f3fd738c97bd6cf0f96285c0b35aa (patch)
tree4ae0eee1e9e0ddb5688fa661288f7baac60ba64a /phpBB/includes/ucp/ucp_remind.php
parent6d7e30ae995fe0791c2bced0974b0445fa769ee9 (diff)
downloadforums-af21e38c1d6f3fd738c97bd6cf0f96285c0b35aa.tar
forums-af21e38c1d6f3fd738c97bd6cf0f96285c0b35aa.tar.gz
forums-af21e38c1d6f3fd738c97bd6cf0f96285c0b35aa.tar.bz2
forums-af21e38c1d6f3fd738c97bd6cf0f96285c0b35aa.tar.xz
forums-af21e38c1d6f3fd738c97bd6cf0f96285c0b35aa.zip
[ticket/9611] Make length of activation keys variable between 6 and 10.
PHPBB3-9611
Diffstat (limited to 'phpBB/includes/ucp/ucp_remind.php')
-rw-r--r--phpBB/includes/ucp/ucp_remind.php2
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) . "'