You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
372 B
20 lines
372 B
8 years ago
|
<?
|
||
|
/**
|
||
|
* @autor Repellent
|
||
|
* @package AVE.cms
|
||
|
* @subpackage editcaptcha
|
||
|
* @filesource
|
||
|
*/
|
||
|
class ModuleEditcaptcha
|
||
|
{
|
||
|
var $tpl_dir;
|
||
|
function editCaptcha ()
|
||
|
{
|
||
|
global $AVE_Template;
|
||
|
$imports = "ASD";
|
||
|
$AVE_Template->assign('captchas',$captcha);
|
||
|
$AVE_Template->assign('content', $AVE_Template->fetch($this->tpl_dir . 'editcaptcha.tpl'));
|
||
|
}
|
||
|
}
|
||
|
?>
|