1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10605] Prefix function with phpbb_ and use true instead of 1

PHPBB3-10605
This commit is contained in:
Joas Schilling
2012-03-12 10:11:52 +01:00
parent 45f39c6d1f
commit ba6943a6a0
2 changed files with 4 additions and 4 deletions

View File

@@ -529,11 +529,11 @@ function user_delete($mode, $user_id, $post_username = false)
$db->sql_query($sql);
// Clean the private messages tables from the user
if (!function_exists('delete_user_pms'))
if (!function_exists('phpbb_delete_user_pms'))
{
include($phpbb_root_path . 'includes/functions_privmsgs.' . $phpEx);
}
delete_user_pms($user_id);
phpbb_delete_user_pms($user_id);
$db->sql_transaction('commit');