diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-06-18 06:17:34 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-06-18 06:17:34 +0000 |
commit | bbd24fe350a3bdba18eaa3d1a1d9329fd538260d (patch) | |
tree | de599b228ab12f6c0940f3f7081299292b07bc23 /app | |
parent | adb9980728c0500046ce623dc023a295b4af21d5 (diff) | |
download | redmine-bbd24fe350a3bdba18eaa3d1a1d9329fd538260d.tar.gz redmine-bbd24fe350a3bdba18eaa3d1a1d9329fd538260d.zip |
Custom field List Link values to URL breaks on entries with spaces (#23067).
git-svn-id: http://svn.redmine.org/redmine/trunk@15539 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/welcome/index.html.erb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/welcome/index.html.erb b/app/views/welcome/index.html.erb index ba0924a7c..d6e840ad2 100644 --- a/app/views/welcome/index.html.erb +++ b/app/views/welcome/index.html.erb @@ -7,6 +7,9 @@ <%= call_hook(:view_welcome_index_left) %> </div> +<%= link_to "Test", "http://foo/test bar" %> +<%= link_to "Test", "http://foo/test%20bar" %> + <div class="splitcontentright"> <% if @news.any? %> <div class="news box"> |