diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-11 05:26:33 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-11 05:26:33 +0000 |
commit | 3e17eb2956a5566b5852c901c5743a32ac2c1dd7 (patch) | |
tree | 3a20b01dfe34923963d27276d77a4ce2300d7160 | |
parent | a7b8e6c02a473134e3ba8097133d3f05aa76decb (diff) | |
download | redmine-3e17eb2956a5566b5852c901c5743a32ac2c1dd7.tar.gz redmine-3e17eb2956a5566b5852c901c5743a32ac2c1dd7.zip |
code format cleanup app/views/watchers/_new.html.erb
git-svn-id: http://svn.redmine.org/redmine/trunk@12617 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/watchers/_new.html.erb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/watchers/_new.html.erb b/app/views/watchers/_new.html.erb index 9fdf79262..a303801ec 100644 --- a/app/views/watchers/_new.html.erb +++ b/app/views/watchers/_new.html.erb @@ -17,7 +17,11 @@ :project_id => @project) }')" %> <div id="users_for_watcher"> - <%= principals_check_box_tags 'watcher[user_ids][]', (watched ? watched.addable_watcher_users : User.active.all(:limit => 100)) %> + <%= principals_check_box_tags( + 'watcher[user_ids][]', + (watched ? + watched.addable_watcher_users : User.active.all(:limit => 100)) + ) %> </div> <p class="buttons"> |