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

AlexisWilke’s picture

Status: Active » Fixed

Cool! 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

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.