diff options
Diffstat (limited to 'app/views/issues/_edit.html.erb')
-rw-r--r-- | app/views/issues/_edit.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/_edit.html.erb b/app/views/issues/_edit.html.erb index 690fa9386..b5ddfac38 100644 --- a/app/views/issues/_edit.html.erb +++ b/app/views/issues/_edit.html.erb @@ -1,4 +1,4 @@ -<% labelled_form_for @issue, :html => {:id => 'issue-form', :multipart => true} do |f| %> +<%= labelled_form_for @issue, :html => {:id => 'issue-form', :multipart => true} do |f| %> <%= error_messages_for 'issue', 'time_entry' %> <%= render :partial => 'conflict' if @conflict %> <div class="box"> @@ -11,7 +11,7 @@ <% end %> <% if User.current.allowed_to?(:log_time, @project) %> <fieldset class="tabular"><legend><%= l(:button_log_time) %></legend> - <% labelled_fields_for :time_entry, @time_entry do |time_entry| %> + <%= labelled_fields_for :time_entry, @time_entry do |time_entry| %> <div class="splitcontentleft"> <p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p> </div> |