xref: /plugin/captcha/conf/default.php (revision df8afac4a110e069954093e9c9add6c0c5dcb6fc)
142a27035SAndreas Gohr<?php
242a27035SAndreas Gohr/**
342a27035SAndreas Gohr * Options for the CAPTCHA plugin
442a27035SAndreas Gohr *
542a27035SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
642a27035SAndreas Gohr */
742a27035SAndreas Gohr
842a27035SAndreas Gohr$conf['mode']        = 'js';
9577b4350SAndreas Gohr$conf['forusers']    = 0;
10577b4350SAndreas Gohr$conf['regprotect']  = 1;
1128c14643SAndreas Gohr$conf['lettercount'] = 5;
1242a27035SAndreas Gohr$conf['width']       = 115;
1342a27035SAndreas Gohr$conf['height']      = 22;
14*df8afac4SAndreas Gohr$conf['question']    = 'What\'s the answer to life, the universe and everything?';
15*df8afac4SAndreas Gohr$conf['answer']      = '42';
16