From 2894c098dc81163c6727348b70e39c667a119952 Mon Sep 17 00:00:00 2001 From: ToksT Date: Sun, 31 Mar 2013 17:51:31 -0300 Subject: [PATCH] lower tag change limit to 50 --- app/models/tag.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/tag.rb b/app/models/tag.rb index 7f0e231ff..be8f03e31 100644 --- a/app/models/tag.rb +++ b/app/models/tag.rb @@ -139,7 +139,7 @@ class Tag < ActiveRecord::Base if category category_id = categories.value_for(category) - if category_id != tag.category && (CurrentUser.is_builder? || tag.post_count <= 100) + if category_id != tag.category && (CurrentUser.is_builder? || tag.post_count <= 50) tag.update_column(:category, category_id) tag.update_category_cache_for_all end