2
0
Fork 0
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:
Amos L King 2013-06-20 23:41:04 -05:00
parent da6f627c2f
commit 777e8c2012
20 changed files with 30 additions and 21 deletions

View 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