mirror of
https://github.com/redmine/redmine.git
synced 2026-01-26 09:20:01 +01:00
Remove superfluous spaces before colon (#24720).
Patch by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/trunk@16185 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
<%= form_tag({}, :method => :get) do %>
|
||||
<fieldset><legend><%= l(:label_filter_plural) %></legend>
|
||||
<label for='status'><%= l(:field_status) %> :</label>
|
||||
<label for='status'><%= l(:field_status) %>:</label>
|
||||
<%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
|
||||
<label for='name'><%= l(:label_project) %>:</label>
|
||||
<%= text_field_tag 'name', params[:name], :size => 30 %>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<%= form_tag(settings_project_path(@project, :tab => 'versions'), :method => :get) do %>
|
||||
<fieldset><legend><%= l(:label_filter_plural) %></legend>
|
||||
<label for='status'><%= l(:field_status) %> :</label>
|
||||
<label for='status'><%= l(:field_status) %>:</label>
|
||||
<%= select_tag 'version_status', options_for_select([[l(:label_all), '']] + Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]}, @version_status), :onchange => "this.form.submit(); return false;" %>
|
||||
<label for='name'><%= l(:label_version) %>:</label>
|
||||
<%= text_field_tag 'version_name', @version_name, :size => 30 %>
|
||||
|
||||
Reference in New Issue
Block a user