Module: PicturesHelper

Defined in:
app/helpers/pictures_helper.rb

Instance Method Summary collapse

Instance Method Details



3
4
5
6
7
8
9
10
# File 'app/helpers/pictures_helper.rb', line 3

def tag_link(tag_list)
  list = ''
  tag_list.each { |tag|
    list += link_to tag, { :controller => "tags", :action => "show", :id => tag }
    list += " "
  }
  list
end