diff --git a/demo/http.php b/demo/http.php index b8a2c0a52..7836e377e 100644 --- a/demo/http.php +++ b/demo/http.php @@ -7,9 +7,8 @@ } if (isset($_GET['img'])) { - $fp = fopen(__DIR__ . '/../website/template/img/logo-small.png', 'rb'); + $fp = fopen('https://bref.sh/img/logo-small.png', 'rb'); header('Content-Type: image/png'); - header('Content-Length: ' . filesize(__DIR__ . '/logo.png')); fpassthru($fp); exit(0); }