Skip to content

Commit

Permalink
Fixed a bug in statistics module where an Other field was incorrecty …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
c-schmitz committed Oct 6, 2007
1 parent f2f3f72 commit 23c5cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/statistics.php
Expand Up @@ -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');
}
}
}
Expand Down

0 comments on commit 23c5cd9

Please sign in to comment.