diff --git a/mod/choice/lang/en/choice.php b/mod/choice/lang/en/choice.php index 938742261a6..c069dc102ca 100644 --- a/mod/choice/lang/en/choice.php +++ b/mod/choice/lang/en/choice.php @@ -31,7 +31,7 @@ $string['displayhorizontal'] = 'Display horizontally'; $string['displaymode'] = 'Display mode'; $string['displayvertical'] = 'Display vertically'; $string['expired'] = 'Sorry, this activity closed on {$a} and is no longer available'; -$string['fillinatleastoneoption'] = 'You need to provide at least two possible answers.'; +$string['atleastoneoption'] = 'You need to provide at least one possible answer.'; $string['full'] = '(Full)'; $string['havetologin'] = 'You have to log in before you can submit your choice'; $string['choice'] = 'Choice'; diff --git a/mod/choice/mod_form.php b/mod/choice/mod_form.php index 1f65611f953..349d79b6c19 100644 --- a/mod/choice/mod_form.php +++ b/mod/choice/mod_form.php @@ -127,11 +127,7 @@ class mod_choice_mod_form extends moodleform_mod { } if ($choices < 1) { - $errors['option[0]'] = get_string('fillinatleastoneoption', 'choice'); - } - - if ($choices < 2) { - $errors['option[1]'] = get_string('fillinatleastoneoption', 'choice'); + $errors['option[0]'] = get_string('atleastoneoption', 'choice'); } return $errors; diff --git a/mod/choice/version.php b/mod/choice/version.php index 792bdcb670d..a31312fd41b 100644 --- a/mod/choice/version.php +++ b/mod/choice/version.php @@ -5,7 +5,7 @@ // This fragment is called by /admin/index.php //////////////////////////////////////////////////////////////////////////////// -$module->version = 2010101300; +$module->version = 2010101301; $module->requires = 2010080300; // Requires this Moodle version $module->cron = 0;