1<?php 2/** 3 * CAPTCHA antispam plugin - Image generator 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Andreas Gohr <gohr@cosmocode.de> 7 */ 8 9if (!defined('DOKU_INC')) define('DOKU_INC', dirname(__FILE__) . '/../../../'); 10define('NOSESSION', true); 11define('DOKU_DISABLE_GZIP_OUTPUT', 1); 12require_once(DOKU_INC . 'inc/init.php'); 13require_once(DOKU_INC . 'inc/auth.php'); 14 15$ID = $_REQUEST['id']; 16/** @var helper_plugin_captcha $plugin */ 17$plugin = plugin_load('helper', 'captcha'); 18$rand = $plugin->decrypt($_REQUEST['secret']); 19$ident= $plugin->_fixedIdent(); 20$code = $plugin->_generateCAPTCHA($ident, $rand); 21$plugin->_imageCAPTCHA($code); 22