ChangeSet ID: 31029 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2007/04/03 19:31:57
Modified files: . : index.php
Log message: Alexander Nicolaysen Sørnes alex@thehandofagony.com fix display of top-voted application, one of the variables was prefixed with an 's' instead of an 'sh'
Patch: http://cvs.winehq.org/patch.py?id=31029
Old revision New revision Changes Path 1.43 1.44 +1 -1 appdb/index.php
Index: appdb/index.php diff -u -p appdb/index.php:1.43 appdb/index.php:1.44 --- appdb/index.php:1.43 4 Apr 2007 0:31:57 -0000 +++ appdb/index.php 4 Apr 2007 0:31:57 -0000 @@ -68,7 +68,7 @@ If you have screenshots or links to cont // don't mention the top application if there are no votes yet if($oRow->versionId) { - $sVoteAppLink = version::fullNameLink($oRow->versionId); + $shVoteAppLink = version::fullNameLink($oRow->versionId); echo "There are <b>$numApps</b> applications currently in the database with\n"; echo "$shVoteAppLink being the\n"; echo "top <a href='votestats.php'>voted</a> application.\n";