fixed author type in plugin page

This commit is contained in:
Harry Bomrah 2016-04-06 14:01:34 +08:00
parent 955562045e
commit d5388791be
1 changed files with 2 additions and 0 deletions

View File

@ -101,7 +101,9 @@ class JournalPaper
if (self.fields[t].type.to_s == "String" rescue false)
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).or(t.to_sym.ne => "").count == 0 rescue false)
else
t = "journal_paper_author_types" if t == "author_type"
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false)
t = "author_type" if t == "journal_paper_author_types"
end
pd_title << {
"plugin_data_title" => I18n.t("personal_journal.#{t}")