mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-22 13:30:29 +03:00
Switch to a more secure method for generation of the thread token
This commit is contained in:
parent
d9a8afeb57
commit
8bb1551f7a
@ -40,7 +40,7 @@ $kind_to_string = array($kind_user => "user", $kind_agent => "agent", $kind_for_
|
||||
|
||||
function next_token()
|
||||
{
|
||||
return rand(99999, 99999999);
|
||||
return function_exists('openssl_random_pseudo_bytes') ? hexdec(bin2hex(openssl_random_pseudo_bytes(4))) : mt_rand(99999, 99999999);
|
||||
}
|
||||
|
||||
function next_revision($link)
|
||||
|
Loading…
Reference in New Issue
Block a user