Spam Protector plugin - CAPTCHA case sensitivity
Posted: Wed Jul 22, 2009 11:52 pm
I fear I must have overlooked something, but cannot seem to find a variable/config setting anywhere that controls case sensitivity in CAPTCHA strings for the Spam Protector plugin.
By default, it seems that Spam Protector expects all upper-case text, however entered as such, the string is not validated.
I remedied this easily enough by modifying the CAPTCHA alpha character array to lower case:
I doubt I'll change it now, but I'm curious to know what I might be missing...
Thanks,
Adam
By default, it seems that Spam Protector expects all upper-case text, however entered as such, the string is not validated.
I remedied this easily enough by modifying the CAPTCHA alpha character array to lower case:
Code: Select all
$this->chars = array_merge($this->chars, array('a','b','c','d','e','f','h','j','k','m','n','p','r','t','u','v','w','x','y','z'));Thanks,
Adam