aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-11-11 12:22:20 +0100
committerMarc Alexander <admin@m-a-styles.de>2018-11-11 12:22:20 +0100
commit7801bac09ac1fb5a10c0c518e1e7639233855220 (patch)
treece042bf0f0d978e81a5f9473e2f42845bba6121f /phpBB/includes/functions.php
parentf4063e475dff62f68bdd4c813bf3450492abb3c1 (diff)
parent023ec01611123c426a5aeaf812e50fb1ade43c0e (diff)
downloadforums-7801bac09ac1fb5a10c0c518e1e7639233855220.tar
forums-7801bac09ac1fb5a10c0c518e1e7639233855220.tar.gz
forums-7801bac09ac1fb5a10c0c518e1e7639233855220.tar.bz2
forums-7801bac09ac1fb5a10c0c518e1e7639233855220.tar.xz
forums-7801bac09ac1fb5a10c0c518e1e7639233855220.zip
Merge branch 'prep-release-3.2.4' into 3.2.x
Diffstat (limited to 'phpBB/includes/functions.php')
-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 3fec88a354..99f65a0e92 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -115,7 +115,7 @@ function gen_rand_string_friendly($num_chars = 8)
*/
function unique_id()
{
- return gen_rand_string(32);
+ return strtolower(gen_rand_string(16));
}
/**