Skip to content

Commit

Permalink
Fixed bug determining number of questions per row - wasn't resetting …
Browse files Browse the repository at this point in the history
…$counter after first 4, so second row would be too long.

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@203 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Apr 9, 2003
1 parent 646efe2 commit dba74d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/statistics.php
Expand Up @@ -85,7 +85,7 @@
$counter=0;
}
//echo $flt[2]; //debugging line
if ($counter == 4) {echo "\t\t\t\t</tr>\n\t\t\t\t<tr>";}
if ($counter == 4) {echo "\t\t\t\t</tr>\n\t\t\t\t<tr>"; $counter=0;}
$myfield = "{$sid}X{$flt[1]}X{$flt[0]}";
if ($flt[2] != "A" && $flt[2] != "B" && $flt[2] != "C" && $flt[2] != "T" && $flt[2] != "S" && $flt[2] != "D") //Have to make an exception for these types!
{
Expand Down

0 comments on commit dba74d5

Please sign in to comment.