Merge pull request #2156 from riking/fix-necro

Only warn about necromancy when replying
This commit is contained in:
Jeff Atwood 2014-03-22 15:08:26 -07:00
commit 1353cc61ba

View File

@ -129,6 +129,8 @@ class ComposerMessagesFinder
topic = Topic.where(id: @details[:topic_id]).first
return unless replying?
return if topic.nil? ||
SiteSetting.warn_reviving_old_topic_age < 1 ||
topic.last_posted_at > SiteSetting.warn_reviving_old_topic_age.days.ago