Skip to content

Commit

Permalink
Fixed bug (missing closing parenthisis at line 319)
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@1204 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Sep 22, 2004
1 parent d697c4a commit d8ca8ec
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions admin/printablesurvey.php
Expand Up @@ -308,13 +308,14 @@
}
else
{
while ($dearow = mysql_fetch_array($dearesult))
{
echo "\t\t\t<input type='checkbox' name='$fieldname' value='{$dearow['code']}' readonly='readonly' />{$dearow['answer']}<br />\n";
}
if ($deqrow['other'] == "Y")
{
echo "\t\t\t<input type='checkbox' readonly='readonly' />"._OTHER." <input type='text' size='30' readonly='readonly' /><br />\n";
while ($dearow = mysql_fetch_array($dearesult))
{
echo "\t\t\t<input type='checkbox' name='$fieldname' value='{$dearow['code']}' readonly='readonly' />{$dearow['answer']}<br />\n";
}
if ($deqrow['other'] == "Y")
{
echo "\t\t\t<input type='checkbox' readonly='readonly' />"._OTHER." <input type='text' size='30' readonly='readonly' /><br />\n";
}
}
break;
case "O": //LIST WITH COMMENT
Expand Down

0 comments on commit d8ca8ec

Please sign in to comment.