Hi,
while using an IE7 explorer (yuch) and changing the invoice address or creating a new one, a windows pops up (I think this is Mootools), but it remains empty.
I've looked around and found this in dj_head.php:
<!--[if IE 7]>
<link href="<?php echo $dj_path;?>css/ie7.css" rel="stylesheet" type="text/css" />
<?php if($direction == 'rtl'): ?>
<link href="<?php echo $dj_path;?>css/ie7_rtl.css" rel="stylesheet" type="text/css" />
<?php endif; ?>
<!--[endif]>
which seemed to be interpreted as comments in IE7
I changed it to
<!--[if IE 7] -->
<link href="<?php echo $dj_path;?>css/ie7.css" rel="stylesheet" type="text/css" />
<?php if($direction == 'rtl'): ?>
<link href="<?php echo $dj_path;?>css/ie7_rtl.css" rel="stylesheet" type="text/css" />
<?php endif; ?>
<!--[endif]-->
but to no avail.
I'm guessing this is a bug, hence the report.
Thx!
BC