Skip to content

Commit

Permalink
Added handling for "U" type question
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@1155 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Sep 1, 2004
1 parent b3ab5e9 commit a787369
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/statistics.php
Expand Up @@ -143,7 +143,7 @@
$niceqtext = str_replace("\r", "", $niceqtext);
$niceqtext = str_replace("\n", "", $niceqtext);
//headings
if ($flt[2] != "A" && $flt[2] != "B" && $flt[2] != "C" && $flt[2] != "E" && $flt[2] != "F" && $flt[2] != "H" && $flt[2] != "T" && $flt[2] != "S" && $flt[2] != "D" && $flt[2] != "R" && $flt[2] != "Q" && $flt[2] != "X") //Have to make an exception for these types!
if ($flt[2] != "A" && $flt[2] != "B" && $flt[2] != "C" && $flt[2] != "E" && $flt[2] != "F" && $flt[2] != "H" && $flt[2] != "T" && $flt[2] != "U" && $flt[2] != "S" && $flt[2] != "D" && $flt[2] != "R" && $flt[2] != "Q" && $flt[2] != "X") //Have to make an exception for these types!
{
echo "\t\t\t\t<td align='center'>"
."$setfont<b>$flt[3]&nbsp;"; //Heading (Question No)
Expand All @@ -167,6 +167,7 @@
//DO NUSSINK
break;
case "T": // Long free text
case "U": // Huge free text
$myfield2="T$myfield";
echo "\t\t\t\t<td align='center' valign='top'>";
echo "<input type='checkbox' name='summary[]' value='$myfield2'";
Expand Down

0 comments on commit a787369

Please sign in to comment.