diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-21 12:54:51 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-21 12:54:51 +0000 |
commit | bd3458da6ec438c2f468436e848944670f9aa2d7 (patch) | |
tree | 3903cd8b9e12a71d778896c77091b5aa7800273e /app/views | |
parent | 4ccbc65628efd10cb83ddcc884dc0a4aba3e0b92 (diff) | |
download | redmine-bd3458da6ec438c2f468436e848944670f9aa2d7.tar.gz redmine-bd3458da6ec438c2f468436e848944670f9aa2d7.zip |
added Redmine::VERSION module
git-svn-id: http://redmine.rubyforge.org/svn/trunk@170 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/info.rhtml | 2 | ||||
-rw-r--r-- | app/views/layouts/base.rhtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index 4777a151e..81db03e21 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -1,6 +1,6 @@ <h2><%=l(:label_information_plural)%></h2>
-<p><%=l(:field_version)%>: <strong><%= RDM_APP_NAME %> <%= RDM_APP_VERSION %></strong></p>
+<p><%=l(:field_version)%>: <strong>redMine <%= Redmine::VERSION %></strong></p>
<%=l(:label_environment)%>:
<ul>
diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml index f4d45f029..77d84d7f8 100644 --- a/app/views/layouts/base.rhtml +++ b/app/views/layouts/base.rhtml @@ -135,7 +135,7 @@ </div>
<div id="footer">
- <p><a href="http://redmine.rubyforge.org/"><%= RDM_APP_NAME %></a> <%= RDM_APP_VERSION %></p>
+ <p><a href="http://redmine.rubyforge.org/">redMine</a> <%= Redmine::VERSION %> © 2006-2007 Jean-Philippe Lang</p>
</div>
</div>
|