From d2470fa89230ee88e0c026960181b536eea53cc2 Mon Sep 17 00:00:00 2001 From: Jason Cleeland Date: Tue, 5 Sep 2006 04:01:42 +0000 Subject: [PATCH] Further updates git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/phpsurveyor@2054 b72ed6b6-b9f8-46b5-92b4-906544132732 --- admin/stats.php | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/admin/stats.php b/admin/stats.php index d21b6f6b9b7..72e61a69f9e 100644 --- a/admin/stats.php +++ b/admin/stats.php @@ -176,12 +176,14 @@ function addCondition(value) { if(conditions.options.length > 0) { document.getElementById('removecondition').display=''; } - var filters = new Array(); + + var filters = new String(); var filter = document.getElementById('filter'); for (var i = 0; i < concount+1; i++) { - filters[i]=conditions.options[i].value; + filters += conditions.options[i].value + ";"; } filter.value=filters; + alert(filters); } //--> @@ -213,11 +215,11 @@ function addCondition(value) {