mirror of
https://github.com/Nathanwoodburn/hnschat-web.git
synced 2025-01-18 19:58:12 +11:00
14 lines
354 B
PHP
14 lines
354 B
PHP
<?php
|
|
include "includes.php";
|
|
|
|
$id = $_GET["id"];
|
|
$avatarFile = $GLOBALS["path"]."/etc/avatars/".$id;
|
|
|
|
$domainInfo = domainForID($id);
|
|
if (@$domainInfo && @$domainInfo["avatar"] && file_exists($avatarFile)) {
|
|
$image = file_get_contents($avatarFile);
|
|
$type = mime_content_type($avatarFile);
|
|
header("Content-Type: ".$type);
|
|
die($image);
|
|
}
|
|
?>
|