Index: text_captcha/text_captcha.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/captcha/text_captcha/Attic/text_captcha.module,v
retrieving revision 1.1.4.3
diff -u -b -B -u -p -r1.1.4.3 text_captcha.module
--- text_captcha/text_captcha.module	11 Jul 2007 21:28:48 -0000	1.1.4.3
+++ text_captcha/text_captcha.module	12 Jul 2007 09:15:52 -0000
@@ -77,7 +77,7 @@ function text_captcha_settings_form_vali
   if ($form_id == 'text_captcha_settings_form') {
     if ($form_values['text_captcha_words'] == TEXT_CAPTCHA_USER_DEFINED_WORDS) {
       // check if there are at minimum TEXT_CAPTCHA_USER_DEFINED_WORD_MINIMUM user defined words
-      if (count(explode(' ', variable_get('text_captcha_userdefined_words', ''))) < TEXT_CAPTCHA_USER_DEFINED_WORD_MINIMUM) {
+      if (count(explode(' ', $form_values['text_captcha_userdefined_words'])) < TEXT_CAPTCHA_USER_DEFINED_WORD_MINIMUM) {
         form_set_error('text_captcha_userdefined_words',
           t('You need to enter at least @min words if you want to use user defined words.',
             array('@min' => TEXT_CAPTCHA_USER_DEFINED_WORD_MINIMUM)
