ChangeSet ID: 31262 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/07/23 15:15:21
Modified files: include : util.php
Log message: Edwin Smulders edwin.smulders@gmail.com Fix a that had a missing ; in the page selector code
Patch: http://cvs.winehq.org/patch.py?id=31262
Old revision New revision Changes Path 1.97 1.98 +2 -2 appdb/include/util.php
Index: appdb/include/util.php diff -u -p appdb/include/util.php:1.97 appdb/include/util.php:1.98 --- appdb/include/util.php:1.97 23 Jul 2007 20:15:21 -0000 +++ appdb/include/util.php 23 Jul 2007 20:15:21 -0000 @@ -667,9 +667,9 @@ function display_page_range($iCurrentPag
if($iCurrentPage != 1) { - echo "<a href='".$sLinkurl."&iPage=1'>|<</a> "; + echo "<a href='".$sLinkurl."&iPage=1'>|<</a> "; $iPreviousPage = $iCurrentPage - 1; - echo "<a href='".$sLinkurl."&iPage=$iPreviousPage'><</a> "; + echo "<a href='".$sLinkurl."&iPage=$iPreviousPage'><</a> "; } else { echo "|< < ";