From: John Dong Date: Thu, 30 Aug 2007 19:30:10 +0000 (-0400) Subject: Change ol to li.moveable for IE6 quirk; no need to remove all ordered lists X-Git-Url: https://projects.mako.cc/source/selectricity/commitdiff_plain/5d7239d388387fdae166801c7d26c4103d0d5b0c Change ol to li.moveable for IE6 quirk; no need to remove all ordered lists --- diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb index e8adcf0..524d743 100644 --- a/app/controllers/account_controller.rb +++ b/app/controllers/account_controller.rb @@ -25,6 +25,10 @@ class AccountController < ApplicationController flash[:notice] = "Logged in successfully" end end + + def forgot_password + raise "Not Implemented!" + end def signup @user = User.new(params[:user]) diff --git a/public/stylesheets/ie6hacks.css b/public/stylesheets/ie6hacks.css index 9aa3422..eefd731 100644 --- a/public/stylesheets/ie6hacks.css +++ b/public/stylesheets/ie6hacks.css @@ -24,7 +24,7 @@ div#bar-right { clear: right; } -ol { +li.moveable { list-style-type: none; }