| |
|
| Stats | |
| Goal: | $100.00 |
| Due Date: | May 31 |
| Gross Amount: | $65.00 |
| Net Balance: | $61.80 |
| Left to go: | $38.20 |
|
|
|
| Donations | |
| studioC ($25)May-17 | |
| Anonymous ($15)May-16 | |
| Anonymous ($25)May-4 | |

module
forms
eforms
contact
`ele_caption` text NOT NULL default '',
`ele_caption` text NOT NULL,
`ele_value` text NOT NULL default '',
`ele_value` text NOT NULL,
Captcha is only for not registered users.
I gave it another try and explained more detailed ... but no answer since then.jgarces, thanks for your effort to further develop this form module But...... The number of different modules for xoops with the same purpose is very confusing for the "normal' user. The features added in eForms are in fact very useful and in my experience this is a module that belongs to any website. Is it possible for you to rename the module eforms back to xforms and continue with developing xforms? It's is much more logical for "normal" users and the module xforms (developed by you) became the standard module used for forms. Hopefully we can find a way so that users can use xforms with your additions without having to install a new module and reset everything. Thanks again for your effort!
if ( $xoopsModuleConfig['captcha'] ) {
// Verify entered code
// xoops_load('XoopsCaptcha');
xoops_load("xoopscaptcha");
if ( class_exists( 'XoopsFormCaptcha' ) ) {
$xoopsCaptcha = XoopsCaptcha::getInstance();
if ( !$xoopsCaptcha->verify() )
{
$err[] = $xoopsCaptcha->getMessage();
}
}
}
if ( $xoopsModuleConfig['captcha'] ) {
xoops_load("xoopscaptcha");
$xoopsCaptcha = XoopsCaptcha::getInstance();
if (!$xoopsCaptcha->verify()) {
$err[] = $xoopsCaptcha->getMessage();
}
}
global $xoopsCaptcha, $xoopsModuleConfig;
if ( $xoopsModuleConfig['captcha'] )
{
if ( class_exists('XoopsFormCaptcha') ) {
$form_output->addElement(new XoopsFormCaptcha());
}
}
global $xoopsCaptcha, $xoopsModuleConfig;
if ( $xoopsModuleConfig['captcha'] ) {
if ( class_exists('XoopsFormCaptcha') ) {
$form_output->addElement(new XoopsFormCaptcha());
}
}
I used to get ~ 50 spam-mails a day without this fix, so I had to stop being so lazy
... and ......