Revision 3 (by ahitrov@rambler.ru, 2010/03/24 15:19:32) |
---|
<%ONCE> use Contenido::Captcha; </%ONCE> <%ARGS> $cid => undef; </%ARGS> <%INIT> $m->clear_and_abort(404) unless $cid; my $captcha = Contenido::Captcha->new($keeper); my $img = $captcha->create_image($cid); $m->clear_and_abort(404) unless $img; $r->content_type('image/png'); return $m->out($$img); </%INIT>