summaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-04-16 00:20:49 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-04-16 00:20:49 +0000
commit770a296f437b1edb90d99fd753285b9834b7353e (patch)
tree5ae45986df52e1c4bb883aa17708b9655d33ac54 /lib/tasks
parent8c5d88160f1615e1e308c5f166fd6006d7cc5026 (diff)
downloadredmine-770a296f437b1edb90d99fd753285b9834b7353e.tar.gz
redmine-770a296f437b1edb90d99fd753285b9834b7353e.zip
fix typo at lib/tasks/ciphering.rake
git-svn-id: http://svn.redmine.org/redmine/trunk@13095 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/ciphering.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/ciphering.rake b/lib/tasks/ciphering.rake
index 6443eeb00..fefe3ac49 100644
--- a/lib/tasks/ciphering.rake
+++ b/lib/tasks/ciphering.rake
@@ -21,7 +21,7 @@ namespace :db do
task :encrypt => :environment do
unless (Repository.encrypt_all(:password) &&
AuthSource.encrypt_all(:account_password))
- raise "Some objects could not be saved after encryption, update was rollback'ed."
+ raise "Some objects could not be saved after encryption, update was rolled back."
end
end
@@ -29,7 +29,7 @@ namespace :db do
task :decrypt => :environment do
unless (Repository.decrypt_all(:password) &&
AuthSource.decrypt_all(:account_password))
- raise "Some objects could not be saved after decryption, update was rollback'ed."
+ raise "Some objects could not be saved after decryption, update was rolled back."
end
end
end