fixed toolbar helper

This commit is contained in:
Andreas Stephanides
2013-03-19 04:58:53 +01:00
parent a712fc70f4
commit 744fcfddb4
3 changed files with 7 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ module ApplicationHelper
def toolbar_html(elemente)
html = ""
elemente.each do |e|
html =html + e + " | "
html = html + link_to(e[:text],e[:path]) + " | "
end
#html= html + "</ul>"
raw(html)