diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-08-10 18:39:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-08-10 18:39:49 +0000 |
commit | 32fcdff69fa3818ae80929cd5583615c9fe0778d (patch) | |
tree | 1c969243c0572661fe5ca594343a103d7022f490 /app | |
parent | c0c491dd61807df44ce7e20d1cfc04c7830ab48e (diff) | |
download | redmine-32fcdff69fa3818ae80929cd5583615c9fe0778d.tar.gz redmine-32fcdff69fa3818ae80929cd5583615c9fe0778d.zip |
Removed p around ul.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10190 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/users/_mail_notifications.html.erb | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/app/views/users/_mail_notifications.html.erb b/app/views/users/_mail_notifications.html.erb index 546051232..179f6749a 100644 --- a/app/views/users/_mail_notifications.html.erb +++ b/app/views/users/_mail_notifications.html.erb @@ -8,17 +8,15 @@ ) %> </p> <%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %> - <p> - <%= render_project_nested_lists(@user.projects) do |project| - content_tag('label', - check_box_tag( - 'notified_project_ids[]', - project.id, - @user.notified_projects_ids.include?(project.id) - ) + ' ' + h(project.name) - ) - end %> - </p> + <%= render_project_nested_lists(@user.projects) do |project| + content_tag('label', + check_box_tag( + 'notified_project_ids[]', + project.id, + @user.notified_projects_ids.include?(project.id) + ) + ' ' + h(project.name) + ) + end %> <p><em class="info"><%= l(:text_user_mail_option) %></em></p> <% end %> <p> |