1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-04 16:06:00 +02:00

Merge branch '3.1.x' into 3.2.x

* 3.1.x:
  [ticket/14795] Use maximum topic views instead of adding up views in merge
This commit is contained in:
Tristan Darricau 2016-11-06 15:47:49 +01:00
commit 50f5efba9c

View File

@ -432,7 +432,7 @@ function merge_topics($forum_id, $topic_ids, $to_topic_id)
foreach ($topic_data as $data)
{
$sync_forums[$data['forum_id']] = $data['forum_id'];
$topic_views += $data['topic_views'];
$topic_views = max($topic_views, $data['topic_views']);
}
$topic_data = $topic_data[$to_topic_id];