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
Hi there!
I was testing Redmine 4.1 and found that vault fails with Internal error, upon closer inspection found this in the log:
vault
ActionView::Template::Error (wrong number of arguments (given 1, expected 0)): 78: <% if Redmine::VERSION.to_s.start_with?('3.4') or Redmine::VERSION.to_s.start_with?('4.0') %> 79: <%= context_menu %> 80: <% else %> 81: <%= context_menu project_keys_context_menus_path(@project) %> 82: <% end %> 83: 84: <script type="text/javascript">
Regards
The text was updated successfully, but these errors were encountered:
BTW replacing line 78 for:
<% if Redmine::VERSION.to_s.start_with?('3.4', '4.0', '4.1') %>
Seems to work fine
Sorry, something went wrong.
Thx for info will take a look
implemented in 0.4.1 version
add '4.2' in the line 78 resolve compatibility with redmine 4.2
<% if Redmine::VERSION.to_s.start_with?('3.4', '4.0', '4.1',4.2) %>
thx for report
noshutdown-ru-user
No branches or pull requests
Hi there!
I was testing Redmine 4.1 and found that
vault
fails with Internal error, upon closer inspection found this in the log:Regards
The text was updated successfully, but these errors were encountered: