Remove non-break space

This commit is contained in:
Holger Just 2011-10-28 17:46:24 +02:00
parent e48327893f
commit f1a8373d49
1 changed files with 10 additions and 10 deletions

View File

@ -16,16 +16,16 @@
<%=
l(:label_date_from_to,
 :start => (
   label_tag("from", l(:description_date_from), :class => "hidden-for-sighted") +
   text_field_tag('from', @from, :size => 10, :disabled => !@free_period) +
   calendar_for('from')
 ),
 :end => (
   label_tag("to", l(:description_date_to), :class => "hidden-for-sighted") +
   text_field_tag('to', @to, :size => 10, :disabled => !@free_period) +
   calendar_for('to')
 )
:start => (
label_tag("from", l(:description_date_from), :class => "hidden-for-sighted") +
text_field_tag('from', @from, :size => 10, :disabled => !@free_period) +
calendar_for('from')
),
:end => (
label_tag("to", l(:description_date_to), :class => "hidden-for-sighted") +
text_field_tag('to', @to, :size => 10, :disabled => !@free_period) +
calendar_for('to')
)
)
%>
</span>