two smal fixes todo with the layout of results, see attached patch
The changes are at lines 1086 and 1087:
$increase_depth = '
';
$decrease_depth = '
';
was...
$increase_depth = '
';
$decrease_depth = '
';
...but that isn't how you nest ULs... the
* should not be wrapped in a and it was making the result look wrong and ugly.
| Comment | File | Size | Author |
|---|---|---|---|
| tfilterlayout.patch | 608 bytes | dgtlmoon |
Comments
Comment #1
styro commentedAre you sure?
I couldn't follow your writeup, so I looked at the patch. You have to nest lists inside a list item - putting a list inside a list without being wrapped in a list item is invalid XHTML. Do you have a better test case that validates?
The Drupal menu module nests lists the same way.
Comment #2
solotandem commented