diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-20 18:37:51 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-20 18:37:51 +0000 |
commit | df99d8f30801792560fc955ac36c2801e6aa5ff5 (patch) | |
tree | 967ec8ba76e959670fa5ef1586f7a0e6f9b247aa /app/views/welcome | |
parent | d5b9dedca2298e8b95bbb8ac309ddfe8454a8c76 (diff) | |
download | redmine-df99d8f30801792560fc955ac36c2801e6aa5ff5.tar.gz redmine-df99d8f30801792560fc955ac36c2801e6aa5ff5.zip |
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1088 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/welcome')
-rw-r--r-- | app/views/welcome/index.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/welcome/index.rhtml b/app/views/welcome/index.rhtml index 2e7ec2c06..d618fa6e1 100644 --- a/app/views/welcome/index.rhtml +++ b/app/views/welcome/index.rhtml @@ -18,7 +18,7 @@ <% for project in @projects %> <li> <%= link_to project.name, :controller => 'projects', :action => 'show', :id => project %> (<%= format_time(project.created_on) %>) - <%= textilizable project.description, :project => project %> + <%= textilizable project.short_description, :project => project %> </li> <% end %> </ul> |