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"/>