Files
firstgarden-web-gnu/extend/captcha.extend.php
2013-01-09 18:12:31 +09:00

12 lines
308 B
PHP

<?
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if (defined('_CAPTCHA_')) {
$captcha = (object)array(
'lib' => $g4['path']."/plugin/captcha/captcha.lib.php",
'js' => $g4['path']."/plugin/captcha/captcha.js"
);
include_once($captcha->lib);
}
?>