From 035750d787c3f301d7c65b4bbe5bc1911126bb0a Mon Sep 17 00:00:00 2001 From: Jonathan Ernst Date: Wed, 29 Dec 2004 03:37:58 +0000 Subject: [PATCH] replace mysql_query with query_appdb in index.php --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 8b9e2eb..c244668 100644 --- a/index.php +++ b/index.php @@ -76,7 +76,7 @@ wine-users mailing list or the wine newsgroup, for more information visit "FROM appVotes, appFamily ". "WHERE appVotes.appId = appFamily.appId ". "GROUP BY appId ORDER BY count DESC LIMIT 1"; - $result = mysql_query($voteQuery); + $result = query_appdb($voteQuery); $ob = mysql_fetch_object($result); $voteAppId = $ob->appId;