mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-19 07:08:09 +01:00
[ticket/14795] Merge topic views when merging topics
PHPBB3-14795
This commit is contained in:
parent
51d830a6d3
commit
c588332aa5
@ -420,9 +420,11 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$sync_forums = array();
|
$sync_forums = array();
|
||||||
|
$topic_views = 0;
|
||||||
foreach ($topic_data as $data)
|
foreach ($topic_data as $data)
|
||||||
{
|
{
|
||||||
$sync_forums[$data['forum_id']] = $data['forum_id'];
|
$sync_forums[$data['forum_id']] = $data['forum_id'];
|
||||||
|
$topic_views += $data['topic_views'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$topic_data = $topic_data[$to_topic_id];
|
$topic_data = $topic_data[$to_topic_id];
|
||||||
@ -478,6 +480,12 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id)
|
|||||||
move_posts($post_id_list, $to_topic_id, false);
|
move_posts($post_id_list, $to_topic_id, false);
|
||||||
add_log('mod', $to_forum_id, $to_topic_id, 'LOG_MERGE', $topic_data['topic_title']);
|
add_log('mod', $to_forum_id, $to_topic_id, 'LOG_MERGE', $topic_data['topic_title']);
|
||||||
|
|
||||||
|
// Update topic views count
|
||||||
|
$sql = 'UPDATE ' . TOPICS_TABLE . '
|
||||||
|
SET topic_views = ' . $topic_views . '
|
||||||
|
WHERE topic_id = ' . $to_topic_id;
|
||||||
|
$db->sql_query($sql);
|
||||||
|
|
||||||
// Message and return links
|
// Message and return links
|
||||||
$success_msg = 'POSTS_MERGED_SUCCESS';
|
$success_msg = 'POSTS_MERGED_SUCCESS';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user