
| Title | Quiz points are awarded incorrectly |
|---|---|
| Description | Members entering a survey or quiz are meant to automatically be awarded points, whilst members entering a test are meant to get them based on how well they do. This was the wrong way around. |
| Affects | All versions |
| Fix | Change line 527 of site/pages/modules/quiz.php from:Code
if ((get_option('is_on_points')=='1') && ($quiz['q_points_for_passing']!=0) && (($quiz['q_type']=='TEST') || ($minimum_percentage>=$quiz['q_percentage'])))
Code
if ((get_option('is_on_points')=='1') && ($quiz['q_points_for_passing']!=0) && (($quiz['q_type']!='TEST') || ($minimum_percentage>=$quiz['q_percentage'])))
|
There have been no trackbacks yet