Fix a   that had a missing ; in the page selector code

This commit is contained in:
Edwin Smulders
2007-07-23 20:15:21 +00:00
committed by WineHQ
parent 1678c38c25
commit 477c5efb72

View File

@@ -667,9 +667,9 @@ function display_page_range($iCurrentPage=1, $iPageRange=1, $iTotalPages=1, $sLi
if($iCurrentPage != 1) if($iCurrentPage != 1)
{ {
echo "<a href='".$sLinkurl."&iPage=1'>|&lt</a>&nbsp"; echo "<a href='".$sLinkurl."&iPage=1'>|&lt</a>&nbsp;";
$iPreviousPage = $iCurrentPage - 1; $iPreviousPage = $iCurrentPage - 1;
echo "<a href='".$sLinkurl."&iPage=$iPreviousPage'>&lt</a>&nbsp"; echo "<a href='".$sLinkurl."&iPage=$iPreviousPage'>&lt</a>&nbsp;";
} else } else
{ {
echo "|&lt &lt "; echo "|&lt &lt ";