Fix error in i18n_variable removal for page_content
This commit is contained in:
parent
4a6b9fbe64
commit
3466a19362
|
@ -25,7 +25,7 @@
|
||||||
<%= f.label :context %>
|
<%= f.label :context %>
|
||||||
<%= f.fields_for :context_translations do |f| %>
|
<%= f.fields_for :context_translations do |f| %>
|
||||||
<%= I18nVariable.from_locale(locale) %>
|
<%= I18nVariable.from_locale(locale) %>
|
||||||
<%= f.text_area locale, :style=>"width:100%", :class => 'tinymce_textarea':value => (@page_context.context_translations[locale] rescue nil) %>
|
<%= f.text_area locale, :style=>"width:100%", :class => 'tinymce_textarea', :value => (@page_context.context_translations[locale] rescue nil) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Reference in New Issue