diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-23 14:04:41 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-23 14:04:41 +0000 |
commit | 9c31a05b1c1fba2b1704996f0ed33cb451f13aa7 (patch) | |
tree | d4064634f1f7c3bc0b79cbdb0d82d899151302ef /phpBB/includes/functions.php | |
parent | e6c3b97999cd7c68a3b0ea09c35174512cd7aebe (diff) | |
download | forums-9c31a05b1c1fba2b1704996f0ed33cb451f13aa7.tar forums-9c31a05b1c1fba2b1704996f0ed33cb451f13aa7.tar.gz forums-9c31a05b1c1fba2b1704996f0ed33cb451f13aa7.tar.bz2 forums-9c31a05b1c1fba2b1704996f0ed33cb451f13aa7.tar.xz forums-9c31a05b1c1fba2b1704996f0ed33cb451f13aa7.zip |
make sure set_config is called with the correct is_dynamic value
git-svn-id: file:///svn/phpbb/trunk@6117 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 1c631469cb..92410f2c1c 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -145,7 +145,7 @@ function unique_id($extra = 'c') if ($dss_seeded !== true) { - set_config('rand_seed', $config['rand_seed']); + set_config('rand_seed', $config['rand_seed'], true); $dss_seeded = true; } |