News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

[FIXED] Bug in class/pageNavigation.php

Started by doorknob, July 13, 2008, 03:07:00 AM

Previous topic - Next topic

doorknob

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')." &raquo;&raquo;</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')." &raquo;&raquo;</span></li>";

gregdev


[tr][td]
[/td][td]
www.plainlycode.com[/td][/tr]
[/table]

korb

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>

gregdev

korb,

Perhaps you are not using the latest from SVN. They are all fine there.

Greg

[tr][td]
[/td][td]
www.plainlycode.com[/td][/tr]
[/table]

korb