From 6074a52f78a26b8c64d61e30e8e267c21418df72 Mon Sep 17 00:00:00 2001 From: Toks Date: Sat, 28 Nov 2015 10:44:46 -0500 Subject: [PATCH] Janitor pruner: fix number of months --- app/logical/janitor_pruner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/logical/janitor_pruner.rb b/app/logical/janitor_pruner.rb index 7c738e8e1..72480fa9f 100644 --- a/app/logical/janitor_pruner.rb +++ b/app/logical/janitor_pruner.rb @@ -26,7 +26,7 @@ class JanitorPruner Dmail.create_split( :to_id => user.id, :title => "Janitor inactivity", - :body => "You haven't approved a post in the past two months. In order to make sure the list of active janitors is up-to-date, you have lost your janitor privileges. Please reply to this message if you want to be reinstated.#{unknown_level}" + :body => "You haven't approved a post in the past three months. In order to make sure the list of active janitors is up-to-date, you have lost your janitor privileges. Please reply to this message if you want to be reinstated.#{unknown_level}" ) end end