1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 23:55:26 +02:00

OK< so it did break it - copy and paste error

git-svn-id: file:///svn/phpbb/trunk@5819 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames 2006-04-22 13:50:17 +00:00
parent e6a85132f6
commit cf214949b6

View File

@ -124,7 +124,7 @@ function set_config($config_name, $config_value, $is_dynamic = false)
*/
function gen_rand_string($num_chars = 8)
{
$rand_str = dss_rand();
$rand_str = unique_id();
return substr($rand_str, 0, $num_chars);
}