We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating issue on Dashboard site lead to exception. Solution:
/lib/hooks.rb @@ -6,8 +6,13 @@ module RedmineSprints def controller_issues_new_before_save(context = {}) context[:issue].user_story_id = context[:params][:issue][:user_story_id] if context[:issue].user_story_id && context[:issue].fixed_version_id - context[:issue].redirect_to = url_for(:controller => :sprints, :action => "show", :id => context[:issue].fixed_version_id, :project_id => context[:issue].project.identifier)+"/"+context[:issue].id + if context[:issue].id + context[:issue].redirect_to = url_for(:controller => :sprints, :action => "show", :id => context[:issue].fixed_version_id, :project_id => context[:issue].project.identifier)+"/"+context[:issue].id + else + context[:issue].redirect_to = url_for(:controller => :sprints, :action => "show", :id => context[:issue].fixed_version_id, :project_id => context[:issue].project.identifier) + end + puts ":controller_issues_new_before_save 99" end end
The text was updated successfully, but these errors were encountered:
Thank you! This error was becoming me nuts!
Sorry, something went wrong.
this path solved same problem with redmine 1.1.3
No branches or pull requests
Creating issue on Dashboard site lead to exception. Solution:
The text was updated successfully, but these errors were encountered: