View Single Post
  #5  
Old May 11, 2011, 03:04 PM
mdmower's Avatar
mdmower
 
76 posts · Jul 2010
Missouri, USA
When I wrote the fix for RFE: allow selectable document mode for IE, I used php echo, so I had to escape double quotation marks. Since you prefer to kill php with ?> to pass html commands, shouldn't these escaped quotation marks be removed?

Example: header.php, line 14 (and others)
Code:
?><meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\"/>
should read
Code:
?><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>