]> git.openstreetmap.org Git - rails.git/commitdiff
Correct some minor html validation errors
authorGrant Slater <openstreetmap@firefishy.com>
Sun, 22 May 2011 15:16:44 +0000 (16:16 +0100)
committerGrant Slater <openstreetmap@firefishy.com>
Sun, 22 May 2011 15:16:44 +0000 (16:16 +0100)
app/helpers/application_helper.rb
app/views/user/login.html.erb

index c24e7ff5be26b7a504c620ede19ea95d66ba30b5..6e2ecd3234fcf1c68a5ba72284483a6899288153 100644 (file)
@@ -50,7 +50,7 @@ module ApplicationHelper
     css << ".show_if_user_#{@user.id} { display: inline }" if @user;
     css << ".hide_unless_administrator { display: none }" unless @user and @user.administrator?;
 
-    return content_tag(:style, css)
+    return content_tag(:style, css, :type => "text/css")
   end
 
   def if_logged_in(tag = :div, &block)
index 66a2fab9980bc0748da6df9e801466a2b46f3c79..7cc4b6f24ad455c960ab175ec263de289789dcff 100644 (file)
       </table>
       <%= submit_tag t('user.login.login_button'), :tabindex => 3 %>
     <% end %>
-    <br clear="both">
+    <br clear="all" />
   </div>
   <div id="login_signup">
     <h2><%= t 'user.login.new to osm' %></h2>
     <p><%= t 'user.login.to make changes' %></p>
-    <p><%= t 'user.login.create account minute' %></p></p>
+    <p><%= t 'user.login.create account minute' %></p>
     <p><%= button_to t('user.login.register now'), :action => :new, :referer => params[:referer] %></p>
-    <br clear="both">
+    <br clear="all" />
   </div>
 </div>