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

Changeset 4825

Show
Ignore:
Timestamp:
08/26/06 06:54:26 (2 years ago)
Author:
bitsweat
Message:

Typo in integration app session. Closes #5864.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller/integration.rb

    r4636 r4825  
    233233          (headers || {}).each do |key, value| 
    234234            key = key.to_s.upcase.gsub(/-/, "_") 
    235             key = "HTTP_#{key}" unless env.has_key?(key) || env =~ /^X|HTTP/ 
     235            key = "HTTP_#{key}" unless env.has_key?(key) || key =~ /^X|HTTP/ 
    236236            env[key] = value 
    237237          end