diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-25 18:27:42 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-25 18:27:42 +0000 |
commit | 4e03668eec2c382307645039f2e99b273e45525d (patch) | |
tree | 3ce8841856b880f2aad627d20924099c5136f37b /app/views/layouts | |
parent | 2789b08dd03654b9d2c9755dd3e8a143f6f9b5f9 (diff) | |
download | redmine-4e03668eec2c382307645039f2e99b273e45525d.tar.gz redmine-4e03668eec2c382307645039f2e99b273e45525d.zip |
* replaced :controller => '' broken statements by :controller => 'welcome'
* request_uri method no more used
git-svn-id: http://redmine.rubyforge.org/svn/trunk@175 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/base.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml index d54f1116f..bdecb0b96 100644 --- a/app/views/layouts/base.rhtml +++ b/app/views/layouts/base.rhtml @@ -33,7 +33,7 @@ <div id="navigation">
<ul>
- <li><%= link_to l(:label_home), { :controller => '' }, :class => "icon icon-home" %></li>
+ <li><%= link_to l(:label_home), { :controller => 'welcome' }, :class => "icon icon-home" %></li>
<li><%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'}, :class => "icon icon-mypage" %></li>
<li><%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => "icon icon-projects" %></li>
|