cached_image: remove unnecessary basename()

This commit is contained in:
Andrew Dolgov 2017-02-04 12:02:17 +03:00
parent 6358d70d5e
commit 9c7ebaa08c
1 changed files with 1 additions and 1 deletions

View File

@ -1054,7 +1054,7 @@ class Handler_Public extends Handler {
$filename = CACHE_DIR . '/images/' . $hash;
if (file_exists($filename)) {
header("Content-Disposition: attachment; filename=\"".basename($filename)."\"");
header("Content-Disposition: attachment; filename=\"$hash\"");
/* See if we can use X-Sendfile */
$xsendfile = false;