aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/application_helper.rb
blob: 07bc01d6d24418405fcd7c2f0afc1a17ae18db62 (plain)
1
2
3
4
5
6
7
8
9
10
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper

    # This was the best solution I could find to this, yeuch.
    # http://www.ruby-forum.com/topic/88857
    def stylesheet_link_tag_html4( _n )
        return stylesheet_link_tag( _n ).gsub( ' />', '>' )
    end

end