small typo [ci skip]

This commit is contained in:
Florian Staudacher 2012-06-18 23:40:18 +02:00
parent 6bd93a1164
commit d3b70a7f3a

View file

@ -10,7 +10,7 @@ class ApplicationController < ActionController::Base
before_filter :set_locale before_filter :set_locale
before_filter :set_git_header if (AppConfig[:git_update] && AppConfig[:git_revision]) before_filter :set_git_header if (AppConfig[:git_update] && AppConfig[:git_revision])
before_filter :set_grammatical_gender before_filter :set_grammatical_gender
before_filter :tablet_device_falback before_filter :tablet_device_fallback
inflection_method :grammatical_gender => :gender inflection_method :grammatical_gender => :gender
@ -106,7 +106,7 @@ class ApplicationController < ActionController::Base
@grammatical_gender || nil @grammatical_gender || nil
end end
def tablet_device_falback def tablet_device_fallback
# we currently don't have any special tablet views... # we currently don't have any special tablet views...
request.format = :html if is_tablet_device? request.format = :html if is_tablet_device?
end end