Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7967

Show
Ignore:
Timestamp:
10/18/07 19:23:43 (1 year ago)
Author:
bitsweat
Message:

Take first(size) chars for token. Closes #9622.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/token_generator/lib/token_generator.rb

    r7965 r7967  
    44 
    55    begin 
    6       token = CGI::Session.generate_unique_id(constant) 
     6      token = CGI::Session.generate_unique_id(constant).first(size) 
    77    end while !validity.call(token) if block_given? 
    88