commitcaptcha/Web/Presenters/CaptchaPresenter.php
veselcraft f3d6a3f3e0
Fix compatibility by changing WebP format 🤮 to JPEG 😎🥰🥺🏳️‍🌈
2022-06-03 16:48:01 +03:00

20 lines
572 B
PHP

<?php declare(strict_types=1);
namespace commitcaptcha\Web\Presenters;
use Chandler\MVC\SimplePresenter;
use Nette\Utils\Image;
use commitcaptcha\CaptchaManager;
class CaptchaPresenter extends SimplePresenter
{
function renderCaptcha()
{
$manager = CaptchaManager::i();
$image = $manager->getImage();
header("Pragma: no-cache");
header("Expires: Wed, 12 Feb 2003 00:00:00 GMT");
header("Cache-Control: no-cache, no-store, no-transform, must-revalidate");
$image->send(Image::JPEG);
exit;
}
}