diff --git a/captcha.admin.inc b/captcha.admin.inc index 013855a..2c257e0 100644 --- a/captcha.admin.inc +++ b/captcha.admin.inc @@ -75,7 +75,7 @@ function captcha_admin_settings() { if (isset($captcha_point->module) && $captcha_point->module) { $captcha_type = $captcha_point->module . '/' . $captcha_point->captcha_type; } - elseif ($captcha_point->captcha_type == 'default') { + elseif (isset($captcha_point->captcha_type) && ($captcha_point->captcha_type == 'default')) { $captcha_type = 'default'; } else {