Change ol to li.moveable for IE6 quirk; no need to remove all ordered lists
authorJohn Dong <jdong@mit.edu>
Thu, 30 Aug 2007 19:30:10 +0000 (15:30 -0400)
committerJohn Dong <jdong@mit.edu>
Thu, 30 Aug 2007 19:30:10 +0000 (15:30 -0400)
app/controllers/account_controller.rb
public/stylesheets/ie6hacks.css

index e8adcf0fe809b8a466f38eb7161e5af765060104..524d743ee0161551cbb97909f26f179e3c93e134 100644 (file)
@@ -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])
index 9aa34222567a6439aa63cd47302e2cb16bf36616..eefd731df2a640dabc557b350eb0e4358f711fc5 100644 (file)
@@ -24,7 +24,7 @@ div#bar-right {
   clear: right;
 }
 
-ol {
+li.moveable {
   list-style-type: none;
 }
 

Benjamin Mako Hill || Want to submit a patch?