Captcha updates

This commit is contained in:
Sascha Leib
2025-11-02 21:22:38 +01:00
parent ad279a215c
commit fb281ca1a1
8 changed files with 45 additions and 20 deletions

View File

@@ -10,3 +10,4 @@ $conf['combineNets'] = true;
$conf['geoiplib'] = 'disabled';
$conf['useCaptcha'] = 'disabled';
$conf['captchaSeed'] = 'c53bc5f94929451987efa6c768d8856b';
$conf['captchaBypass'] = '';

View File

@@ -5,14 +5,21 @@
* @author Sascha Leib <sascha@leib.be>
*/
// How to show data in the admin interface:
$meta['showday'] = array('multichoice',
'_choices' => array ('yesterday', 'today'));
$meta['combineNets'] = array('onoff');
// Geolocation settings:
$meta['geoiplib'] = array('multichoice',
'_choices' => array ('disabled', 'phpgeoip'));
// Captcha settings:
$meta['useCaptcha'] = array('multichoice',
'_choices' => array ('disabled', 'loremipsum', 'dada'));
$meta['captchaSeed'] = array('string');
$meta['captchaBypass'] = array('multicheckbox',
'_choices' => array ('langmatch'), '_other' => 'exists');