Hi.
I found a bug in the "to_do_block.pages.inc"
this code is not valid:
$content = '<ul class="primary">'
. '<li' . ($urgent ? $active : '') . '><a jsref="' . $tab_url_base . 'urgent/1">' . t('Urgent') . '</li>'
. '<li' . ($urgent ? '' : $active) . '><a jsref="' . $tab_url_base . 'all/1">' . t('All') . '</li>'
. '</ul>'
. $content;
(line 80)
The links to urgent and all are not closed!
Thats why the layout is messed up in IE, ff will this autofix this error on his own.
Comments
Comment #1
AlexisWilke commentedCool! I checked the fix in. Good catch!
The problem with FF and SeaMonkey is that they fix the code so when you look at the Source Code (right click, etc.) the fix is included in what you see. 8-}
Thank you.
Alexis Wilke