From cf214949b68feb115fed5b4f1aa612c2d82b19f0 Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Sat, 22 Apr 2006 13:50:17 +0000 Subject: [PATCH] OK< so it did break it - copy and paste error git-svn-id: file:///svn/phpbb/trunk@5819 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 8936f381c0..886865f645 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -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); }