Browse Source

fix variables registry

main
ghost 3 years ago
parent
commit
55f505e6e4
  1. 12
      src/application/controller/api/image.php

12
src/application/controller/api/image.php

@ -2,18 +2,18 @@ @@ -2,18 +2,18 @@
if (isset($_GET['hash'])) {
$filename = md5($_GET['hash']);
$filepath = PROJECT_DIR . '/cache/image/' . $filename . '.jpeg';
$fileName = md5($_GET['hash']);
$filePath = PROJECT_DIR . '/cache/image/' . $fileName . '.jpeg';
if (!file_exists($filepath)) {
if (!file_exists($filePath)) {
$icon = new Icon();
$image = $icon->generateImageResource($filename, 42, 42, false);
$image = $icon->generateImageResource($fileName, 42, 42, false);
file_put_contents($filepath, $image);
file_put_contents($filePath, $image);
}
$image = file_get_contents($filepath);
$image = file_get_contents($filePath);
header("Content-Type: image/jpeg");

Loading…
Cancel
Save