Changeset 1586

Show
Ignore:
Timestamp:
03/25/08 00:39:05 (8 months ago)
Author:
jm3
Message:

duh mkdir

Files:

Legend:

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

    r1584 r1586  
    4747  end 
    4848   
     49  def get_user_dir( u ) 
     50    d = RAILS_ROOT + "/tmp/API_cache/" + u 
     51    FileUtils.mkdir_p d 
     52  end 
     53   
    4954  def get_tags_file( u ) 
    50     RAILS_ROOT + "/tmp/API_cache/" + u + "/tags.xml" 
     55    get_user_dir( u ) + "/tags.xml" 
    5156  end 
    5257