aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-03-23 14:47:07 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-03-23 14:47:07 +0100
commit827f11cf839b68f2c3dec9c6eec183cfe33ab9a3 (patch)
tree81b3957426a45bdfbcf75e4d936808e974097922
parent04450e1faed7dea615b7621be2ecd560550204ac (diff)
parent1e0cda3e8affba9b76cdbdcc655316389668f3bd (diff)
downloadforums-827f11cf839b68f2c3dec9c6eec183cfe33ab9a3.tar
forums-827f11cf839b68f2c3dec9c6eec183cfe33ab9a3.tar.gz
forums-827f11cf839b68f2c3dec9c6eec183cfe33ab9a3.tar.bz2
forums-827f11cf839b68f2c3dec9c6eec183cfe33ab9a3.tar.xz
forums-827f11cf839b68f2c3dec9c6eec183cfe33ab9a3.zip
Merge branch '3.2.x'
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index be51a7342d..c9f2601e31 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -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));
}
/**