Show
Ignore:
Timestamp:
06/06/2007 09:34:30 (18 months ago)
Author:
why
Message:
  • lib/hpricot/parse.rb: further downcasing of empty element tags in HTML mode, reported by aaronp.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/hpricot/parse.rb

    r147 r151  
    5656        end 
    5757 
    58         if !opts[:xml] and token[0] == :emptytag and ElementContent[token[1].downcase] != :EMPTY 
    59           token[0] = :stag 
     58        if !opts[:xml] and token[0] == :emptytag 
     59          token[1] = token[1].send(conv) 
     60          if ElementContent[token[1].downcase] != :EMPTY 
     61            token[0] = :stag 
     62          end 
    6063        end 
    6164