Skip to content
This repository has been archived by the owner on Jan 24, 2018. It is now read-only.

Commit

Permalink
Compatibility with Redmine 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederick Thomssen committed Dec 3, 2015
1 parent f145f1c commit d44d03c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/settings/_redminetab_settings.html.erb
@@ -1,4 +1,4 @@
<% string_fields = ProjectCustomField.find :all %>
<% string_fields = ProjectCustomField.all %>
<% select_options = '<option value="">(Select one)</option>' << options_from_collection_for_select(string_fields, :id, :name, @settings['tab_text'].to_i) %>

<fieldset>
Expand Down
4 changes: 2 additions & 2 deletions config/routes.rb
@@ -1,4 +1,4 @@
RedmineApp::Application.routes.draw do
match 'tab/show', :to => 'tab#show'
match 'tab/system_show', :to => 'tab#system_show'
get 'tab/show', :to => 'tab#show'
get 'tab/system_show', :to => 'tab#system_show'
end

0 comments on commit d44d03c

Please sign in to comment.