Files
firstgarden-web-gnu/extend/captcha.extend.php
2013-01-10 10:57:44 +09:00

14 lines
359 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);
} else {
unset($_SESSION['ss_captcha_use']);
}
?>