livevalidation
livevalidation copied to clipboard
BUG: JavaScript in html
I found bug.
(Rails 2.3.8)
Need change in file form_helper.rb on line 45 -- ( js_code.blank? ? '' : "" ) ++ ( js_code.blank? ? '' : content_tag("script",js_code) )
This bug affects me too, I changed the code to just put out:
content_tag('script', js_code)
and it seemed to do the job.