diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-12 21:46:38 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-12 21:46:38 -0500 |
commit | e2c67a8e42beefe1631a90feeb2215e2137c944b (patch) | |
tree | 5d1cd0b0bc4ce1996c58f99b954e018655075aa7 /phpBB/includes/mcp/mcp_topic.php | |
parent | f5de11438c471a76fc5c5f3a4b8c4c29d07ed734 (diff) | |
download | forums-e2c67a8e42beefe1631a90feeb2215e2137c944b.tar forums-e2c67a8e42beefe1631a90feeb2215e2137c944b.tar.gz forums-e2c67a8e42beefe1631a90feeb2215e2137c944b.tar.bz2 forums-e2c67a8e42beefe1631a90feeb2215e2137c944b.tar.xz forums-e2c67a8e42beefe1631a90feeb2215e2137c944b.zip |
[ticket/11162] Rename tricky updates to database helper.
PHPBB3-11162
Diffstat (limited to 'phpBB/includes/mcp/mcp_topic.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_topic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php index 29dabdd2a2..66d0c7a47e 100644 --- a/phpBB/includes/mcp/mcp_topic.php +++ b/phpBB/includes/mcp/mcp_topic.php @@ -622,7 +622,7 @@ function merge_posts($topic_id, $to_topic_id) // If the topic no longer exist, we will update the topic watch table. if (!function_exists('phpbb_update_rows_avoiding_duplicates_notify_status')) { - include($phpbb_root_path . 'includes/functions_tricky_update.' . $phpEx); + include($phpbb_root_path . 'includes/functions_database_helper.' . $phpEx); } phpbb_update_rows_avoiding_duplicates_notify_status($db, TOPICS_WATCH_TABLE, 'topic_id', $topic_ids, $to_topic_id); } |