fix error when locale not setting and prevent xss attack

This commit is contained in:
chiu 2020-04-29 18:07:52 +08:00
parent b3e25c884b
commit 00c72c364b
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class PersonalPatentsController < ApplicationController
{
'patents' => patent_list,
'extras' => { 'widget-title' => t('module_name.personal_patent'),
'url' => '/' + params[:locale] + params[:url],
'url' => '/' + I18n.locale.to_s + params[:url],
'select_text' => select_text,
'search_text' => search_text,
'search_value' => params[:keywords].to_s.gsub(/\"/,''),