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