From fae4e2bd969af97e6a40c5d80a2eab86252dfe77 Mon Sep 17 00:00:00 2001 From: David M Date: Tue, 5 Dec 2006 20:06:58 +0000 Subject: [PATCH] oops :D git-svn-id: file:///svn/phpbb/trunk@6711 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 2 +- phpBB/includes/ucp/ucp_register.php | 2 +- phpBB/posting.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 6f5ff42ac2..ab7bc452a5 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1910,7 +1910,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa 'session_id' => (string) $user->session_id, 'confirm_type' => (int) CONFIRM_LOGIN, 'code' => (string) $code, - 'seed' => (int) $seed) + 'seed' => (float) $seed) ); $db->sql_query($sql); diff --git a/phpBB/includes/ucp/ucp_register.php b/phpBB/includes/ucp/ucp_register.php index d78ea09806..17e421505b 100644 --- a/phpBB/includes/ucp/ucp_register.php +++ b/phpBB/includes/ucp/ucp_register.php @@ -448,7 +448,7 @@ class ucp_register 'session_id' => (string) $user->session_id, 'confirm_type' => (int) CONFIRM_REG, 'code' => (string) $code, - 'seed' => (int) $seed) + 'seed' => (float) $seed) ); $db->sql_query($sql); } diff --git a/phpBB/posting.php b/phpBB/posting.php index d991f27b35..663a96591f 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1135,7 +1135,7 @@ if ($config['enable_post_confirm'] && !$user->data['is_registered'] && $solved_c 'session_id' => (string) $user->session_id, 'confirm_type' => (int) CONFIRM_POST, 'code' => (string) $code, - 'seed' => (int) $seed) + 'seed' => (float) $seed) ); $db->sql_query($sql);