Closed (fixed)
Project:
CAPTCHA
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
31 Jan 2006 at 02:00 UTC
Updated:
12 Feb 2006 at 08:55 UTC
Jump to comment: Most recent file
Comments
Comment #1
xeniac commented_captcha_load() tries to access a system variable that does not exist at this moment.
Way 1 to solve the Problem:
change
$captcha_type = variable_get("captcha_type", NULL);to$captcha_type = variable_get("captcha_type", 'math');Way 2:
Check if variable_get() returns NULL and exit with FALSE.
Comment #2
arnabdotorg commentedFixed.