Fix bug. #4

Merged
chiu merged 1 commits from 123/seminar:master into master 2023-01-16 09:37:29 +00:00
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ Rails.application.routes.draw do
s = Site.first
update_flag = s.respond_to?(:tmp_flags)
need_update1 = update_flag && !(s.tmp_flags.include?('fix_sr'))
need_update2 = !update_flag || !(s.tmp_flags.include?('sm1'))
need_update2 = !update_flag || !(s.tmp_flags.include?('smer1'))
if need_update1
Page.where(:bind_model=>"SeminarMain",:all_pageids=>nil).each do |p|
p.save
@ -23,7 +23,7 @@ Rails.application.routes.draw do
end
if update_flag
s = Site.first
s.tmp_flags << 'sm1'
s.tmp_flags << 'smer1'
s.save
end
end