1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

[ticket/14550] Fix the number of characters returned by unique_id()

PHPBB3-14450
This commit is contained in:
Tristan Darricau
2016-03-23 10:18:22 +01:00
parent eca4726f3c
commit dc097221d8

View File

@@ -96,7 +96,7 @@ function gen_rand_string_friendly($num_chars = 8)
*/
function unique_id()
{
return bin2hex(random_bytes(6));
return bin2hex(random_bytes(8));
}
/**