mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Correct spelling of suppress
supress => suppress Amos King @adkron <amos.l.king@gmail.com>
This commit is contained in:
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
|
||||
Reference in New Issue
Block a user