0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
coppermine
/
1.5.12-0
/
standard
/
htdocs
/
[
Home
]
File: captcha.php
<?php /************************* Coppermine Photo Gallery ************************ Copyright (c) 2003-2011 Coppermine Dev Team v1.0 originally written by Gregory Demar This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. ******************************************** Coppermine version: 1.5.12 $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.5.x/captcha.php $ $Revision: 8154 $ **********************************************/ define("IN_COPPERMINE", true); require("include/init.inc.php"); require("include/captcha.inc.php"); /** * Fonts to create the captcha image */ $aFonts = array('images/fonts/acidic.ttf', 'images/fonts/hurryup.ttf'); // create new image $oPhpCaptcha = new PhpCaptcha($aFonts, 150, 30, 5, 20, false); $oPhpCaptcha->Create(); ?>