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
380 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. * @version SVN: $Id$
  9. * @filesource $URL$
  10. */
  11. class CaptchaImageAction
  12. {
  13. public function __construct()
  14. {
  15. $captcha = new Captcha();
  16. echo $captcha->getImage(Env::Get('ctoken'));
  17. exit();
  18. }
  19. }