mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
Merge branch '3.2.x'
This commit is contained in:
commit
c30a2b27a5
1 changed files with 8 additions and 0 deletions
|
@ -428,9 +428,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];
|
||||||
|
@ -491,6 +493,12 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id)
|
||||||
$topic_data['topic_title']
|
$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…
Add table
Reference in a new issue