aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index e82f5af537..ddb717f8be 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -201,8 +201,8 @@ function user_delete($mode, $user_id, $post_username = false)
if ($row = $db->sql_fetchrow($result))
{
- set_config('newest_user_id', $row['user_id']);
- set_config('newest_username', $row['username']);
+ set_config('newest_user_id', $row['user_id'], true);
+ set_config('newest_username', $row['username'], true);
}
$db->sql_freeresult($result);
}