aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-03-12 10:11:52 +0100
committerJoas Schilling <nickvergessen@gmx.de>2012-03-12 10:11:52 +0100
commitba6943a6a0ea50af772dc6e94f13b56292cd9f37 (patch)
tree99bb259ddc61680778df8c6c9dff798454267c5b /phpBB/includes/functions_user.php
parent45f39c6d1f2adc318d521bd9eb75d80f0750fdb8 (diff)
downloadforums-ba6943a6a0ea50af772dc6e94f13b56292cd9f37.tar
forums-ba6943a6a0ea50af772dc6e94f13b56292cd9f37.tar.gz
forums-ba6943a6a0ea50af772dc6e94f13b56292cd9f37.tar.bz2
forums-ba6943a6a0ea50af772dc6e94f13b56292cd9f37.tar.xz
forums-ba6943a6a0ea50af772dc6e94f13b56292cd9f37.zip
[ticket/10605] Prefix function with phpbb_ and use true instead of 1
PHPBB3-10605
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 20923ea495..92a7b8e0e9 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -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');