--- C:\Users\Ramesh\AppData\Local\Temp\multichoice.classes.inc-revBASE.svn001.tmp.inc	2010-07-30 11:50:11.000000000 +-0100
+++ Q:\nbc\kola_rnair\src\sites\all\modules\quiz\question_types\multichoice\multichoice.classes.inc	2010-07-30 11:37:05.000000000 +-0100
@@ -837,13 +837,14 @@
           }
           else {
             if (drupal_strlen($this->checkMarkup($short['feedback_if_not_chosen'], $short['feedback_if_not_chosen_format'])) > 0) {
               $rowspan = 2;
               $not = '_not';
             }
-            if ($this->question->choice_multi == 1 || $short['score_if_chosen'] == $max_score_if_chosen)
+            if ( ($this->question->choice_multi == 1 || $short['score_if_chosen'] == $max_score_if_chosen)
+                     && 0 == variable_get('multichoice_dont_indicate_correct_answer',0) )
               $row[] = array('data' => theme('image', "$p/theme/images/should.png", t('Should have chosen'), t('This is !the correct answer, but you didn\'t choose it', array('!the' => $the))), 'width' => 35, 'rowspan' => $rowspan);
             else {
               $row[] = array('data' => '', 'width' => 35, 'rowspan' => $rowspan);
             }
           }
         }

		 
--- C:\Users\Ramesh\AppData\Local\Temp\multichoice.module-revBASE.svn000.tmp.module	2010-07-30 11:50:42.000000000 +-0100
+++ Q:\nbc\kola_rnair\src\sites\all\modules\quiz\question_types\multichoice\multichoice.module	2010-07-30 11:39:05.000000000 +-0100
@@ -40,12 +40,17 @@
 function multichoice_config() {
   $form['multichoice_def_num_of_alts'] = array(
     '#type' => 'textfield',
     '#title' => t('Default number of alternatives'),
     '#default_value' => variable_get('multichoice_def_num_of_alts', 2),
   );
+  $form['multichoice_dont_indicate_correct_answer'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Don\'t indicate the correct answer to the user for questions they get wrong. Turning this on may help encourage the user to re-try the quiz!'),
+    '#default_value' => variable_get('multichoice_dont_indicate_correct_answer', 0),
+  );
   $form['#validate'] = 'multichoice_config_validate';
   return $form;
 }
 
 /**
  * Validate the multichoice config form values
		 