1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01:00

Merge pull request #6001 from marc1706/ticket/16511

[ticket/16511] Fix typo when checking for phpbb_delete_users_pms()
This commit is contained in:
Marc Alexander 2020-06-06 12:03:34 +02:00
commit cc67e8b26f
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -760,7 +760,7 @@ function user_delete($mode, $user_ids, $retain_username = true)
$db->sql_query($sql);
// Clean the private messages tables from the user
if (!function_exists('phpbb_delete_user_pms'))
if (!function_exists('phpbb_delete_users_pms'))
{
include($phpbb_root_path . 'includes/functions_privmsgs.' . $phpEx);
}