From 6a24d7218305d96cee66934a32280f0b6d44a504 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Tue, 2 Jun 2020 21:22:27 +0200 Subject: [PATCH] [ticket/16511] Fix typo when checking for phpbb_delete_users_pms() PHPBB3-16511 --- phpBB/includes/functions_user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index d39dbed5ff..58de5ab0de 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -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); }