X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/57c3784b961c52f860890b3995c2949294748fd3..c7c13a51f9049afdd8d7be9a5f2129865642fbe7:/thumb/index.php diff --git a/thumb/index.php b/thumb/index.php index 5327192..28f3b9e 100644 --- a/thumb/index.php +++ b/thumb/index.php @@ -5,6 +5,14 @@ list ($height, $imgpath) = explode('/', ltrim($Args, '/'), 2); $width= 1000; $imgpath = preg_replace('{^(?=[0-9]+/)}', 'data/', $imgpath, 1); +if (!function_exists('popen')) { + http_response_code(501); + $target = '501.png'; + header('Content-type: '.mime_content_type($target)); + readfile($target); + exit; +} + if (!file_exists($imgpath)) { http_response_code(404); exit;