--- quiz.module	2012-04-29 20:04:18.476751235 -0400
+++ quiz.module	2012-04-29 20:04:06.700751311 -0400
@@ -3977,7 +3977,7 @@
     // Save the relationship between the new question and the quiz.
     $sql = 'INSERT INTO {quiz_node_relationship}
             (parent_nid, parent_vid, child_nid, child_vid, question_status, weight, max_score)
-            VALUES(:parent_id, :parent_vid, :child_nid, :child_vid, :question_status, :weight, :max_score)';
+            VALUES(:parent_nid, :parent_vid, :child_nid, :child_vid, :question_status, :weight, :max_score)';
     db_query($sql, array(':parent_nid' => $node->nid, ':parent_vid' => $node->vid, ':child_nid' => $original_question->nid, ':child_vid' => $original_question->vid, ':question_status' => $res_o->question_status, ':weight' => $res_o->weight, ':max_score' => $res_o->max_score));
   }
 }

--- question_types/multichoice/multichoice.classes.inc	2012-04-29 20:09:27.124749145 -0400
+++ question_types/multichoice/multichoice.classes.inc	2012-04-29 20:09:20.316749191 -0400
@@ -207,12 +207,12 @@
     $alternatives = $this->node->alternatives[$i];
     db_insert('quiz_multichoice_answers')
       ->fields(array(
-        'answer' => $alternatives['answer']['value'],
-        'answer_format' => $alternatives['answer']['format'],
-        'feedback_if_chosen' => $alternatives['feedback_if_chosen']['value'],
-        'feedback_if_chosen_format' => $alternatives['feedback_if_chosen']['format'],
-        'feedback_if_not_chosen' => $alternatives['feedback_if_not_chosen']['value'],
-        'feedback_if_not_chosen_format' => $alternatives['feedback_if_not_chosen']['format'],
+        'answer' => $alternatives['answer'],
+        'answer_format' => $alternatives['answer_format'],
+        'feedback_if_chosen' => $alternatives['feedback_if_chosen'],
+        'feedback_if_chosen_format' => $alternatives['feedback_if_chosen_format'],
+        'feedback_if_not_chosen' => $alternatives['feedback_if_not_chosen'],
+        'feedback_if_not_chosen_format' => $alternatives['feedback_if_not_chosen_format'],
         'score_if_chosen' => $alternatives['score_if_chosen'],
         'score_if_not_chosen' => $alternatives['score_if_not_chosen'],
         'question_nid' => $this->node->nid,
