From d3b70a7f3acacc07f35e79777154ab9319d1fe3a Mon Sep 17 00:00:00 2001 From: Florian Staudacher Date: Mon, 18 Jun 2012 23:40:18 +0200 Subject: [PATCH] small typo [ci skip] --- app/controllers/application_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 746500031..17b339c13 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -10,7 +10,7 @@ class ApplicationController < ActionController::Base before_filter :set_locale before_filter :set_git_header if (AppConfig[:git_update] && AppConfig[:git_revision]) before_filter :set_grammatical_gender - before_filter :tablet_device_falback + before_filter :tablet_device_fallback inflection_method :grammatical_gender => :gender @@ -106,7 +106,7 @@ class ApplicationController < ActionController::Base @grammatical_gender || nil end - def tablet_device_falback + def tablet_device_fallback # we currently don't have any special tablet views... request.format = :html if is_tablet_device? end