On Viernes, 11 de Junio de 2010 19:46:59 Soren Christensen escribió:
> Hi,
>
> Were just forced into a 2.3.8 upgrade. Almost functional - but a few
> things are broken.
>
> Rather than getting the standard Date/Time Select Icon I get the full
> HTML to get to the there.
>
>    1.
>
>           <img alt="Calendar" class="calendar_date_select_popup_icon"
>           onclick="new CalendarDateSelect( $(this).previous(),
>           {time:true, year_range:10} );"
>           src="/images/calendar_date_select/calendar.gif?1276051808"
>           style="border:0px; cursor:pointer;" />
>
>    2.
>
>
> Did something change as far as the Date/Time fields or is this just a bug.
>
> I'm on the master branch with the last commits show as 6/10/2010.

Rails 2.3.8 added support for automatic escaping and html_safe method, so 
calendar_date_select should call html_safe at the end in 
calendar_date_select_output like this:
out.respond_to?(:html_safe) ? out.html_safe : out

-- 
Sergio Cambra .:: entreCables S.L. ::.
Mariana Pineda 23, 50.018 Zaragoza
T) 902 021 404 F) 976 52 98 07 E) [email protected]

-- 
You received this message because you are subscribed to the Google Groups 
"ActiveScaffold : Ruby on Rails plugin" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/activescaffold?hl=en.

Reply via email to