Fix error in i18n_variable removal for page_content

This commit is contained in:
Christophe Vilayphiou 2012-07-26 04:10:02 +08:00
parent 50813eb57d
commit 30624c0bd8
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
<%= f.label :context %>
<%= f.fields_for :context_translations do |f| %>
<%= 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 %>
</div>