From fccb72565115ce30e2981c7d96f11fe951e46bb4 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 5 Jul 2021 05:11:35 +0000 Subject: [PATCH] Unneeded workaround removed --- src/Util/Images.php | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/Util/Images.php b/src/Util/Images.php index a65f9a1a8..7b11ea3f6 100644 --- a/src/Util/Images.php +++ b/src/Util/Images.php @@ -193,18 +193,7 @@ class Images $filesize = strlen($img_str); try { - if (function_exists("getimagesizefromstring")) { - $data = @getimagesizefromstring($img_str); - } else { - $tempfile = tempnam(get_temppath(), "cache"); - - $stamp1 = microtime(true); - file_put_contents($tempfile, $img_str); - DI::profiler()->saveTimestamp($stamp1, "file"); - - $data = getimagesize($tempfile); - unlink($tempfile); - } + $data = @getimagesizefromstring($img_str); } catch (\Exception $e) { return []; }