forked from spen/seminar
fix field error
This commit is contained in:
parent
9e1af5e918
commit
228fcd8781
|
@ -47,7 +47,8 @@ class SeminarSignupField
|
||||||
end
|
end
|
||||||
|
|
||||||
def locale
|
def locale
|
||||||
get_data["cross_lang"] == "true" ? false : true
|
tmp = get_data
|
||||||
|
!tmp || get_data["cross_lang"] == "true" ? false : true
|
||||||
end
|
end
|
||||||
|
|
||||||
def self_defined_markup_options?
|
def self_defined_markup_options?
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
<div class="highlight seminar_privacy">
|
<div class="highlight seminar_privacy">
|
||||||
|
|
||||||
<%= @seminar_agreement.content.html_safe %>
|
<%= @seminar_agreement.content.html_safe rescue '' %>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue