##// END OF EJS Templates
Rails3: use String#html_safe for parse_wiki_links() at ApplicationHelper....
Toshi MARUYAMA -
r6366:c941602570e9
parent child
Show More
@@ -582,10 +582,10 module ApplicationHelper
582 link_to(h(title || page), url, :class => ('wiki-page' + (wiki_page ? '' : ' new')))
582 link_to(h(title || page), url, :class => ('wiki-page' + (wiki_page ? '' : ' new')))
583 else
583 else
584 # project or wiki doesn't exist
584 # project or wiki doesn't exist
585 all
585 all.html_safe
586 end
586 end
587 else
587 else
588 all
588 all.html_safe
589 end
589 end
590 end
590 end
591 end
591 end
General Comments 0
You need to be logged in to leave comments. Login now