mirror of
https://github.com/discourse/discourse.git
synced 2025-09-12 21:10:47 +08:00
Correct spelling of suppress
supress => suppress Amos King @adkron <amos.l.king@gmail.com>
This commit is contained in:
parent
da6f627c2f
commit
777e8c2012
20 changed files with 30 additions and 21 deletions
9
db/migrate/20130621042855_change_supress_to_suppress.rb
Normal file
9
db/migrate/20130621042855_change_supress_to_suppress.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
class ChangeSupressToSuppress < ActiveRecord::Migration
|
||||
def up
|
||||
SiteSetting.update_all({name: "supress_reply_directly_below"}, name: "suppress_reply_directly_below")
|
||||
end
|
||||
|
||||
def down
|
||||
SiteSetting.update_all({name: "suppress_reply_directly_below"}, name: "supress_reply_directly_below")
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue