Browse Source

Merged thread visibility is decided by first post

Rafał Pitoń 10 years ago
parent
commit
e78ed61394
1 changed files with 0 additions and 1 deletions
  1. 0 1
      misago/threads/views/generic/forum/actions.py

+ 0 - 1
misago/threads/views/generic/forum/actions.py

@@ -248,7 +248,6 @@ class ForumActions(Actions):
                     merged_thread.last_post_on = timezone.now()
                     merged_thread.is_pinned = max(t.is_pinned for t in threads)
                     merged_thread.is_closed = max(t.is_closed for t in threads)
-                    merged_thread.is_hidden = max(t.is_hidden for t in threads)
                     merged_thread.save()
 
                     for thread in threads: