It's good to see the SEO wand being waved over browse navigation but there is still a bug
Line 165 of pageNavigation.php.
$html .= "\n<li><span class=\"pagenav\">".$VM_LANG->_('PN_END')." »»</span><li>";
has 2 opening li tags instead of an opening/closing pair. Should be
$html .= "\n<li><span class=\"pagenav\">".$VM_LANG->_('PN_END')." »»</span></li>";
Thanks. Fixed in SVN rev. 1469.
Greg
greg please search pageNavigation.class.php for "LI" (list item) match all words and you will find:
-line 143 $html .= "\n<li><span class=\"pagenav\"> $i </span><li>";
here last <li> should be </li>
korb,
Perhaps you are not using the latest from SVN. They are all fine there.
Greg
yes, thank you