mirror of
https://github.com/YunoHost-Apps/dokuwiki_ynh.git
synced 2024-09-03 18:26:20 +02:00
15 lines
372 B
PHP
15 lines
372 B
PHP
<?php
|
|
/**
|
|
* Options for the CAPTCHA plugin
|
|
*
|
|
* @author Andreas Gohr <andi@splitbrain.org>
|
|
*/
|
|
|
|
$conf['mode'] = 'js';
|
|
$conf['forusers'] = 0;
|
|
$conf['regprotect'] = 1;
|
|
$conf['lettercount'] = 5;
|
|
$conf['width'] = 115;
|
|
$conf['height'] = 22;
|
|
$conf['question'] = 'What\'s the answer to life, the universe and everything?';
|
|
$conf['answer'] = '42';
|