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_user.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_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 1b4dc37cd2..736e626793 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -116,7 +116,7 @@ function user_update_name($old_name, $new_name) if ($config['newest_username'] == $old_name) { - set_config('newest_username', $new_name); + set_config('newest_username', $new_name, true); } } |