looks like an earlier version nuked setting the
$this_question variable. The unified diff below seems
to have fixed the problem.
Is there an alternate way to do custom records, that
people aren't noticing this?
<pre>
[mike@orion mike]$ diff -u custom_records.php.rbk
custom_records.php
#------------------------- cut here
------------------------#
--- custom_records.php.rbk 2004-09-30
21:52:16.964970656 -0400
+++ custom_records.php 2004-09-30 21:52:14.356367224 -0400
@@ -129,6 +129,7 @@
";
for ($i=0;$i<$number_of_questions;$i++) {
+ $this_question=$prtfname[$i];
$this_type = $prtftype[$i]; // get the type
of question
// begin the row...
if ($prtftype[$i] != "heading") {
#------------------------- cut here
------------------------#