# HG changeset patch # User luisf # Date 1321632299 0 # Node ID b153713dc4fd2c14afaab525a82d5b30f3cdea04 # Parent eb3e9e1ffc1304c966808e48cdc4432f51c546e3 Fixes the default status of the my_projects fieldset in the projects index view. diff -r eb3e9e1ffc13 -r b153713dc4fd vendor/plugins/redmine_tags/lib/redmine_tags/patches/projects_controller_patch.rb --- a/vendor/plugins/redmine_tags/lib/redmine_tags/patches/projects_controller_patch.rb Fri Nov 18 15:48:53 2011 +0000 +++ b/vendor/plugins/redmine_tags/lib/redmine_tags/patches/projects_controller_patch.rb Fri Nov 18 16:04:59 2011 +0000 @@ -48,21 +48,19 @@ status = params[:status] session[(field + "_status").to_sym] = status - logger.error { "SET - DEBUG-ME #{session.inspect}" } - render :nothing => true end # gets the status of the collabsible fieldsets def get_fieldset_statuses if session[:my_projects_fieldset_status].nil? - @myproj_status = true + @myproj_status = "true" else @myproj_status = session[:my_projects_fieldset_status] end if session[:filters_fieldset_status].nil? - @filter_status = false + @filter_status = "false" else @filter_status = session[:filters_fieldset_status] end