diff options
| author | David M <davidmj@users.sourceforge.net> | 2006-12-05 20:06:58 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2006-12-05 20:06:58 +0000 |
| commit | fae4e2bd969af97e6a40c5d80a2eab86252dfe77 (patch) | |
| tree | 342f01208692a6afb2666294e808670534ed8204 /phpBB | |
| parent | f43a46fcf407f8eda62dceef5e0bcb2eadc59beb (diff) | |
| download | forums-fae4e2bd969af97e6a40c5d80a2eab86252dfe77.tar forums-fae4e2bd969af97e6a40c5d80a2eab86252dfe77.tar.gz forums-fae4e2bd969af97e6a40c5d80a2eab86252dfe77.tar.bz2 forums-fae4e2bd969af97e6a40c5d80a2eab86252dfe77.tar.xz forums-fae4e2bd969af97e6a40c5d80a2eab86252dfe77.zip | |
oops :D
git-svn-id: file:///svn/phpbb/trunk@6711 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/includes/functions.php | 2 | ||||
| -rw-r--r-- | phpBB/includes/ucp/ucp_register.php | 2 | ||||
| -rw-r--r-- | 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); |
