Commit 93c7d1c158f74e4e9e64939cfaa9049f9d916f02
1 parent
aba691f9
Exists in
staging
and in
1 other branch
should set save to false
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/controllers/my_profile/tasks_controller.rb
... | ... | @@ -55,11 +55,11 @@ class TasksController < MyProfileController |
55 | 55 | |
56 | 56 | def close |
57 | 57 | failed = {} |
58 | - save = false | |
59 | 58 | |
60 | 59 | if params[:tasks] |
61 | 60 | params[:tasks].each do |id, value| |
62 | 61 | decision = value[:decision] |
62 | + save = false | |
63 | 63 | |
64 | 64 | if value[:task].is_a?(Hash) && value[:task][:tag_list] |
65 | 65 | ... | ... |