diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 08:09:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 08:09:23 +0000 |
commit | 60d80e9d314ea31886b9f2215673acad6c4ed95a (patch) | |
tree | 31142fa4dd843ae554bab418b636c952a5f9dcb4 /app/views/issues | |
parent | dd3284d844dc06cb5c58a907a5ac1381df756cc6 (diff) | |
download | redmine-60d80e9d314ea31886b9f2215673acad6c4ed95a.tar.gz redmine-60d80e9d314ea31886b9f2215673acad6c4ed95a.zip |
remove trailing white-spaces from app/views/issues/_attributes.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7313 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/_attributes.html.erb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/issues/_attributes.html.erb b/app/views/issues/_attributes.html.erb index ba42b919b..02aba7c79 100644 --- a/app/views/issues/_attributes.html.erb +++ b/app/views/issues/_attributes.html.erb @@ -13,18 +13,18 @@ <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %> <%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), l(:label_issue_category_new), - 'category[name]', + 'category[name]', {:controller => 'issue_categories', :action => 'new', :project_id => @project}, - :title => l(:label_issue_category_new), + :title => l(:label_issue_category_new), :tabindex => 199) if authorize_for('issue_categories', 'new') %></p> <% end %> <% unless @issue.assignable_versions.empty? %> <p><%= f.select :fixed_version_id, version_options_for_select(@issue.assignable_versions, @issue.fixed_version), :include_blank => true %> <%= prompt_to_remote(image_tag('add.png', :style => 'vertical-align: middle;'), l(:label_version_new), - 'version[name]', + 'version[name]', {:controller => 'versions', :action => 'create', :project_id => @project}, - :title => l(:label_version_new), + :title => l(:label_version_new), :tabindex => 200) if authorize_for('versions', 'new') %> </p> <% end %> |