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['loginprotect']= 0;
|
|
$conf['lettercount'] = 5;
|
|
$conf['width'] = 125;
|
|
$conf['height'] = 30;
|
|
$conf['question'] = 'What\'s the answer to life, the universe and everything?';
|
|
$conf['answer'] = '42';
|