From d76c297a4109a7c3624212eb30485344f831b3f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Wed, 4 Apr 2007 00:31:57 +0000 Subject: [PATCH] fix display of top-voted application, one of the variables was prefixed with an 's' instead of an 'sh' --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 6c8ece4..be65e87 100644 --- a/index.php +++ b/index.php @@ -68,7 +68,7 @@ If you have screenshots or links to contribute, please browse the database and u // 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 $numApps applications currently in the database with\n"; echo "$shVoteAppLink being the\n"; echo "top voted application.\n";