MDL-14780 Show analysis to students setting does not reflect roles aliases

This commit is contained in:
agrabs 2008-06-22 18:06:14 +00:00
parent 488b13baba
commit 7ac32c7087
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,6 @@ $string['position'] = 'Position';
$string['preview'] = 'Preview';
$string['previous_page'] = 'Previous page';
$string['public'] = 'Public';
$string['publish_stats_on_students'] = 'Show analysis to students';
$string['question'] = 'Question';
$string['questions'] = 'Questions';
$string['radio'] = 'Multiple choice - single answer';;
@ -159,6 +158,7 @@ $string['selected_dump']='Selected indexes of \$SESSION variable are dumped belo
$string['separator_decimal'] = '.';
$string['separator_thousand'] = ',';
$string['show_all'] = 'Show all';
$string['show_analysepage_after_submit'] = 'Show analysepage after submit';
$string['show_entries'] = 'Show responses';
$string['show_entry'] = 'Show response';
$string['site_after_submit'] = 'Site after submit';

View File

@ -53,7 +53,7 @@ class mod_feedback_mod_form extends moodleform_mod {
$options[2] = get_string('non_anonymous', 'feedback');
$mform->addElement('select', 'anonymous', get_string('anonymous_edit', 'feedback'), $options);
$mform->addElement('selectyesno', 'publish_stats', get_string('publish_stats_on_students', 'feedback'));
$mform->addElement('selectyesno', 'publish_stats', get_string('show_analysepage_after_submit', 'feedback'));
$mform->addElement('selectyesno', 'email_notification', get_string('email_notification', 'feedback'));
$mform->setHelpButton('email_notification', array('emailnotification', get_string('email_notification', 'feedback'), 'feedback'));