auto_complete
auto_complete copied to clipboard
auto_complete_result() returns a Array.to_s
auto_complete_result() does at the end content_tag("ul", items.uniq) and items is just a array. That way I get <ul>["<li>foo</li>","<li>bar</li>"]</ul> where it should be <ul><li>foo</li><li>bar</li></ul>.
I added content_tag("ul", items.uniq.join("") but wonder why this never came upp. I am using Rails 2.3.5.