Changeset 1583

Show
Ignore:
Timestamp:
03/24/08 03:58:33 (8 months ago)
Author:
jm3
Message:

oh yeah, guess we should actually save these.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • agitator/app/controllers/access_controller.rb

    r1576 r1583  
    3232    if params["email_1"] == params["email_2"] 
    3333      @message = "You've been added to the waiting list!" 
     34      wannabes = File.new( RAILS_ROOT + "/beta_wannabes.txt" , "a" ) 
     35      wannabes.puts params["email_1"] + ", " + Time.now.to_s 
     36      wannabes.close() 
    3437    else 
    3538      @message = "Shucks, your email address wasn't recognizable. Please try again."