Skip to content
Snippets Groups Projects
Commit 05a58c8b authored by falcon's avatar falcon
Browse files

#636662 reported by neorg: Some explanations added

parent d7e102c4
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,17 @@ function quiz_question_revision_actions($form_state, $nid, $vid) {
'#value' => t('Submit'),
);
$form['#submit'] = array('quiz_question_revision_actions_submit');
$form['update_expl'] = array(
'#type' => 'item',
'#title' => t('Update'),
'#value' => t('Replace the old revision of the question with the new revision.'),
);
$form['revise_expl'] = array(
'#type' => 'item',
'#title' => t('Revise'),
'#value' => t('If a quiz has been answered you should make a new revision to ensure that excisting answer statistics and reports remain correct.'),
'#description' => t('If the new revision of the question only correct spelling errors etc. you don\'t need to revise.'),
);
return $form;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment