diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-29 22:27:43 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-29 22:27:43 +0000 |
commit | 840f18b1c7e462ee56307eb281a91bb7cbbe3ea4 (patch) | |
tree | b162b6c1f42a021e701a8c788b9adbd271b3f78c /app/views/layouts | |
parent | 088563db3e00020d691d79d18c01ac8b06ce92d3 (diff) | |
download | redmine-840f18b1c7e462ee56307eb281a91bb7cbbe3ea4.tar.gz redmine-840f18b1c7e462ee56307eb281a91bb7cbbe3ea4.zip |
Added Redmine::Info to store various information about the application.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@682 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/base.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml index 9c81a313b..1beb51ca9 100644 --- a/app/views/layouts/base.rhtml +++ b/app/views/layouts/base.rhtml @@ -3,7 +3,7 @@ <head> <title><%= Setting.app_title + (@html_title ? ": #{@html_title}" : "") %></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> -<meta name="description" content="redMine" /> +<meta name="description" content="<%= Redmine::Info.app_name %>" /> <meta name="keywords" content="issue,bug,tracker" /> <!--[if IE]> <style type="text/css"> @@ -103,7 +103,7 @@ </div> <div id="footer"> - <p><a href="http://www.redmine.org/">redMine</a> <small><%= Redmine::VERSION %> © 2006-2007 Jean-Philippe Lang</small></p> + <p><%= link_to Redmine::Info.app_name, Redmine::Info.url %> <small><%= Redmine::VERSION %> © 2006-2007 Jean-Philippe Lang</small></p> </div> </div> |