Fixed langauge system tab
This commit is contained in:
parent
053144dfa4
commit
85778224a1
|
@ -173,7 +173,7 @@ class ApplicationController < ActionController::Base
|
||||||
|
|
||||||
session[:locale] = condition ? ( session[:locale] || default_locale || browser_locale || backup_locale) : I18n.default_locale.to_s
|
session[:locale] = condition ? ( session[:locale] || default_locale || browser_locale || backup_locale) : I18n.default_locale.to_s
|
||||||
I18n.locale = session[:locale].to_sym
|
I18n.locale = session[:locale].to_sym
|
||||||
@site_in_use_locales = @site.in_use_locales
|
@site_in_use_locales = site_locales_default_head(@site.in_use_locales)
|
||||||
@site_valid_locales = site_locales_default_head(@site.valid_locales)
|
@site_valid_locales = site_locales_default_head(@site.valid_locales)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -218,7 +218,6 @@ class ApplicationController < ActionController::Base
|
||||||
|
|
||||||
def site_locales_default_head(locales)
|
def site_locales_default_head(locales)
|
||||||
if locales[0].eql? I18n.locale.to_s
|
if locales[0].eql? I18n.locale.to_s
|
||||||
Rails.logger.info
|
|
||||||
locales
|
locales
|
||||||
else
|
else
|
||||||
a = Array.new(locales)
|
a = Array.new(locales)
|
||||||
|
|
Reference in New Issue