summaryrefslogtreecommitdiffstats
path: root/app/controllers/watchers_controller.rb
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-06-20 16:08:15 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-06-20 16:08:15 +0000
commit95c3c63cfea276aec3e0a7b1e7de47dcf147afce (patch)
treeec553e4af3077c677afbb83274b7dd3f667927d8 /app/controllers/watchers_controller.rb
parent5db9a982cc314a3b869cb97945cc97a75405a527 (diff)
downloadredmine-95c3c63cfea276aec3e0a7b1e7de47dcf147afce.tar.gz
redmine-95c3c63cfea276aec3e0a7b1e7de47dcf147afce.zip
Fix for Ruby 1.9 strings.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3798 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/watchers_controller.rb')
-rw-r--r--app/controllers/watchers_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/watchers_controller.rb b/app/controllers/watchers_controller.rb
index 06e5802f6..ad8d8be22 100644
--- a/app/controllers/watchers_controller.rb
+++ b/app/controllers/watchers_controller.rb
@@ -83,7 +83,7 @@ private
replace_ids = [params[:replace]]
end
else
- replace_ids = 'watcher'
+ replace_ids = ['watcher']
end
respond_to do |format|
format.html { redirect_to :back }