1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-14 12:44:06 +02:00

[ticket/15860] Fix format of backup files

PHPBB3-15860
This commit is contained in:
Ruben Calvo
2018-10-30 11:16:51 +00:00
parent dc109b1952
commit 1f14f7c327
2 changed files with 3 additions and 3 deletions

View File

@@ -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(32));
}
/**