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.

18 lines
337 B

13 years ago
13 years ago
  1. <?php
  2. /**
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage captcha
  7. * @since 2010-04-24
  8. */
  9. class CaptchaImageAction
  10. {
  11. public function __construct()
  12. {
  13. $captcha = new Captcha();
  14. echo $captcha->getImage(Env::Get('ctoken'));
  15. exit();
  16. }
  17. }