Skip to content
Snippets Groups Projects
Commit 29745f3b authored by Sivaji Ganesh Jojodae's avatar Sivaji Ganesh Jojodae
Browse files

Fix #559150 E-mailing quiz results has odd language and a bad default for 4.x by rszrama.

parent a8a08c2a
No related branches found
No related tags found
No related merge requests found
......@@ -545,9 +545,9 @@ function quiz_admin_settings() {
$form['quiz_global_settings']['quiz_email_results'] = array(
'#type' => 'checkbox',
'#title' => t('Enable Sending Quiz Results to User Email ID', array('@quiz' => strtolower(QUIZ_NAME))),
'#title' => t('E-mail users their quiz results at the end of a quiz.', array('@quiz' => strtolower(QUIZ_NAME))),
'#default_value' => variable_get('quiz_email_results', 1),
'#description' => t('Check this to send users quiz results over email at the end of quiz.')
'#description' => t('Check this to send users quiz results over email at the end of a quiz.')
);
......
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