mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 15:40:12 +01:00
8 lines
158 B
PHP
8 lines
158 B
PHP
|
<?php
|
||
|
require_once("inc/functions.php");
|
||
|
require_once("inc/imgcaptcha.php");
|
||
|
$t = $_GET["cr"];
|
||
|
header("Content-Type: image/png");
|
||
|
generateImage($t);
|
||
|
?>
|