Skip to content

Commit

Permalink
Fixed issue #6476: Error in data entry when using multiple choice wit…
Browse files Browse the repository at this point in the history
…h comment questions and MSSQL
  • Loading branch information
c-schmitz committed Aug 13, 2012
1 parent 420c4a0 commit 4426331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/dataentry.php
Expand Up @@ -2314,7 +2314,7 @@ function saveshow(value)
break;
case "P": //Multiple choice with comments checkbox + text
$dataentryoutput .= "<table border='0'>\n";
$meaquery = "SELECT * FROM ".db_table_name("questions")." WHERE parent_qid={$deqrow['qid']} AND language='{$sDataEntryLanguage}' ORDER BY question_order, question";
$meaquery = "SELECT * FROM ".db_table_name("questions")." WHERE parent_qid={$deqrow['qid']} AND language='{$sDataEntryLanguage}' ORDER BY question_order";
$mearesult = db_execute_assoc($meaquery);
while ($mearow = $mearesult->FetchRow())
{
Expand Down

0 comments on commit 4426331

Please sign in to comment.