From 6f35da69d7422206ab6da0be68751af5b54e3dce Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sat, 24 Jun 2006 03:09:07 +0000 Subject: [PATCH] Fix voting. Another case, ha ha, where different capitalization messed us up --- include/vote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vote.php b/include/vote.php index da8656a..8d0f383 100644 --- a/include/vote.php +++ b/include/vote.php @@ -113,7 +113,7 @@ function vote_menu() { $aClean = array(); //array of filtered user input - $aClean['appid'] = makeSafe($_REQUEST['appId']); + $aClean['appId'] = makeSafe($_REQUEST['appId']); $m = new htmlmenu("Votes","updatevote.php");