diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-21 18:01:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-21 18:01:02 +0000 |
commit | bb8d360188b69fe66e20a969d5dbe6b86b1a0795 (patch) | |
tree | 28b076856d803df8775237d166e6a83310eb7b1b /app/views/layouts/base.rhtml | |
parent | 9595029709812efc712559f0339939c7c16e8137 (diff) | |
download | redmine-bb8d360188b69fe66e20a969d5dbe6b86b1a0795.tar.gz redmine-bb8d360188b69fe66e20a969d5dbe6b86b1a0795.zip |
Set doctype to transitional. Fixed a few non matching tags in views.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1022 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/layouts/base.rhtml')
-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 df7b2daf9..c98f2b45b 100644 --- a/app/views/layouts/base.rhtml +++ b/app/views/layouts/base.rhtml @@ -1,4 +1,4 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title><%=h html_title %></title> @@ -73,7 +73,7 @@ <div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div> <div id="footer"> - Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> <%= Redmine::VERSION %> © 2006-2007 Jean-Philippe Lang + Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> <%= Redmine::VERSION %> © 2006-2007 Jean-Philippe Lang </div> </body> </html> |