At line 237 of taxonomy_block.module we have

$content .= '<div id=". $x .'" class="'. (substr(decbin($x), -1) ? 'flip' : 'flop') .'"> (etc)

but providing a numeric id (actually, an id starting with a number) is forbidden by XHTML standards and results in the page not validating (validator.w3.org):


Line 49, column 32: value of attribute "id" invalid: "1" cannot start a name

It is possible that you violated the naming convention for this attribute.
For example, id and name attributes must begin with a letter, not a digit.

It is obviously enough to declare a name string before $x to fix the problem.

Comments

crunchywelch’s picture

fixed in cvs

crunchywelch’s picture

Assigned: Unassigned » crunchywelch
Anonymous’s picture