From 5d7239d388387fdae166801c7d26c4103d0d5b0c Mon Sep 17 00:00:00 2001 From: John Dong Date: Thu, 30 Aug 2007 15:30:10 -0400 Subject: [PATCH] Change ol to li.moveable for IE6 quirk; no need to remove all ordered lists --- app/controllers/account_controller.rb | 4 ++++ public/stylesheets/ie6hacks.css | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; } -- 2.30.2