From f4706aa3be0ea474473ae16ecba6b51ed261bc80 Mon Sep 17 00:00:00 2001 From: Toks Date: Sun, 23 Jun 2013 18:55:45 -0400 Subject: [PATCH] after a tag correction, display tag whether it is empty or not --- app/controllers/tag_corrections_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/tag_corrections_controller.rb b/app/controllers/tag_corrections_controller.rb index 0c6511e1f..2f6303937 100644 --- a/app/controllers/tag_corrections_controller.rb +++ b/app/controllers/tag_corrections_controller.rb @@ -14,7 +14,7 @@ class TagCorrectionsController < ApplicationController if params[:commit] == "Fix" @correction.fix! - redirect_to tags_path(:search => {:name_matches => @correction.tag.name}), :notice => "Tag will be fixed in a few seconds" + redirect_to tags_path(:search => {:name_matches => @correction.tag.name, :hide_empty => "no"}), :notice => "Tag will be fixed in a few seconds" else redirect_to tags_path(:search => {:name_matches => @correction.tag.name}) end