VirtueMart Forum

VirtueMart Dev/Coding Central: VM1 (old version) => Quality & Testing VirtueMart 1.1.x => Virtuemart 1.1 Development (Archiv) => Q&T Resolved => Topic started by: Cony on July 09, 2008, 00:27:52 AM

Title: Pagination is XHTML invalid
Post by: Cony on July 09, 2008, 00:27:52 AM
There are 2 small mistakes in pageNavigation.class.php file - li tag is not closed correctly - resulting in invalid xhtml.

It is located on line 124 and 146.

line 124
$html .= "\n<li><span class=\"pagenav\"> $i </span><li>";
line 146
$html .= "\n<li><span class=\"pagenav\">".$VM_LANG->_('PN_END')." &raquo;&raquo;</span><li>";

just change <li> at the ned of these lines to be </li>.
Title: Re: Pagination is XHTML invalid
Post by: Soeren on July 14, 2008, 21:36:39 PM
Ok,
this is fixed in SVN now.

Thanks for reporting!