diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-07-08 01:24:18 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-07-08 01:24:18 +0200 |
| commit | e3fe4d7b56cd251f3abeb5690406d30de8b1dc0e (patch) | |
| tree | e325f9fa62e2ee2671ac19eeef17a9968842239c /phpBB/includes | |
| parent | ef753d046db24550a875e1f54bdd0a2d3a4fb07a (diff) | |
| parent | 24cc3fd0f941ec2ea8a1a75f7b3a811d9438f359 (diff) | |
| download | forums-e3fe4d7b56cd251f3abeb5690406d30de8b1dc0e.tar forums-e3fe4d7b56cd251f3abeb5690406d30de8b1dc0e.tar.gz forums-e3fe4d7b56cd251f3abeb5690406d30de8b1dc0e.tar.bz2 forums-e3fe4d7b56cd251f3abeb5690406d30de8b1dc0e.tar.xz forums-e3fe4d7b56cd251f3abeb5690406d30de8b1dc0e.zip | |
Merge branch 'ticket/jellydoughnut/9703' into develop-olympus
* ticket/jellydoughnut/9703:
[ticket/9703] Correct database leak where deleting user did not rm some PM data
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/functions_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 271542efdd..93e4e6db07 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -528,7 +528,7 @@ function user_delete($mode, $user_id, $post_username = false) $db->sql_transaction('begin'); - $table_ary = array(USERS_TABLE, USER_GROUP_TABLE, TOPICS_WATCH_TABLE, FORUMS_WATCH_TABLE, ACL_USERS_TABLE, TOPICS_TRACK_TABLE, TOPICS_POSTED_TABLE, FORUMS_TRACK_TABLE, PROFILE_FIELDS_DATA_TABLE, MODERATOR_CACHE_TABLE, DRAFTS_TABLE, BOOKMARKS_TABLE, SESSIONS_KEYS_TABLE); + $table_ary = array(USERS_TABLE, USER_GROUP_TABLE, TOPICS_WATCH_TABLE, FORUMS_WATCH_TABLE, ACL_USERS_TABLE, TOPICS_TRACK_TABLE, TOPICS_POSTED_TABLE, FORUMS_TRACK_TABLE, PROFILE_FIELDS_DATA_TABLE, MODERATOR_CACHE_TABLE, DRAFTS_TABLE, BOOKMARKS_TABLE, SESSIONS_KEYS_TABLE, PRIVMSGS_FOLDER_TABLE, PRIVMSGS_RULES_TABLE); foreach ($table_ary as $table) { |
