From 23c5cd9c96523285f0b74bd1dd0e3b091ae77734 Mon Sep 17 00:00:00 2001 From: Carsten Schmitz Date: Sat, 6 Oct 2007 09:01:34 +0000 Subject: [PATCH] Fixed a bug in statistics module where an Other field was incorrecty queried on a normal question without 'other' option set git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/stable_plus@3339 b72ed6b6-b9f8-46b5-92b4-906544132732 --- admin/statistics.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/statistics.php b/admin/statistics.php index 2c93254dbae..52e93d561e0 100644 --- a/admin/statistics.php +++ b/admin/statistics.php @@ -1334,7 +1334,7 @@ function show(element) { } if (($qtype == "L" || $qtype == "!") && $qother == "Y") { - $alist[]=array($clang->gT("Other"),$clang->gT("Other"),$myfield.'Other'); + $alist[]=array($clang->gT("Other"),$clang->gT("Other"),$fielddata['fieldname'].'other'); } } }