Mercurial > hg > soundsoftware-site
changeset 783:b153713dc4fd feature_14
Fixes the default status of the my_projects fieldset in the projects index view.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 18 Nov 2011 16:04:59 +0000 |
parents | eb3e9e1ffc13 |
children | 32d853e2e7ed ae82810661da |
files | vendor/plugins/redmine_tags/lib/redmine_tags/patches/projects_controller_patch.rb |
diffstat | 1 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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