appdb/include util.php

WineHQ wineowner at wine.codeweavers.com
Mon Jul 23 15:15:21 CDT 2007


ChangeSet ID:	31262
CVSROOT:	/opt/cvs-commit
Module name:	appdb
Changes by:	wineowner at winehq.org	2007/07/23 15:15:21

Modified files:
	include        : util.php 

Log message:
	Edwin Smulders <edwin.smulders at gmail.com>
	Fix a &nbsp; 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'>|&lt</a>&nbsp";
+        echo "<a href='".$sLinkurl."&iPage=1'>|&lt</a>&nbsp;";
         $iPreviousPage = $iCurrentPage - 1;
-        echo "<a href='".$sLinkurl."&iPage=$iPreviousPage'>&lt</a>&nbsp";
+        echo "<a href='".$sLinkurl."&iPage=$iPreviousPage'>&lt</a>&nbsp;";
     } else
     {
         echo "|&lt &lt ";



More information about the wine-cvs mailing list