diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-03-27 12:54:13 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-03-27 12:54:13 +0000 |
commit | 43a5febf6148a639d5fd917cad4422af5ba6b790 (patch) | |
tree | 21f05e912563631066d6b7e01c662daa4817b76e | |
parent | 89aa60cbbd2c72cfa955865494d5cb7998b8dcd2 (diff) | |
download | redmine-43a5febf6148a639d5fd917cad4422af5ba6b790.tar.gz redmine-43a5febf6148a639d5fd917cad4422af5ba6b790.zip |
Fixed: Links to missing wiki pages not red on project overview page (#5177).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3614 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/projects/show.rhtml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/projects/show.rhtml b/app/views/projects/show.rhtml index c47a44364..e98c3504c 100644 --- a/app/views/projects/show.rhtml +++ b/app/views/projects/show.rhtml @@ -7,7 +7,9 @@ <h2><%=l(:label_overview)%></h2> <div class="splitcontentleft"> - <%= textilizable @project.description %> + <div class="wiki"> + <%= textilizable @project.description %> + </div> <ul> <% unless @project.homepage.blank? %><li><%=l(:field_homepage)%>: <%= auto_link(h(@project.homepage)) %></li><% end %> <% if @subprojects.any? %> |