diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 12:32:41 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 12:32:41 -0400 |
commit | 8a170ed8fd014cb7640b04c535a359b3275681fd (patch) | |
tree | 9dcfbd67db4df4d5930d92b8d13d60002a2ba37d /actions/register.php | |
parent | 1906237ddc5c74e385dd6c722457dfc819937114 (diff) |
special function for generating confirmation codes
darcs-hash:20080622163241-34904-199b3654328d78c0b9fe2fa85a3ecc1ab0b1262a.gz
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php index 862ca2a78..31c8fea70 100644 --- a/actions/register.php +++ b/actions/register.php @@ -121,7 +121,7 @@ class RegisterAction extends Action { if ($email) { $confirm = new Confirm_address(); - $confirm->code = common_good_rand(16); + $confirm->code = common_confirmation_code(128); $confirm->user_id = $user->id; $confirm->address = $email; $confirm->address_type = 'email'; |