X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/f9f84c1e4389dc23e77b51dadd53410377128cfc..72c6eff9ee6ab700aff022ea88511f54e7a4e97c:/admin.php?ds=sidebyside diff --git a/admin.php b/admin.php index bdd0267..87dbcea 100755 --- a/admin.php +++ b/admin.php @@ -229,6 +229,19 @@ if (isset ($_POST['action'])) echo '
'; } + elseif (strcmp ($_POST['action'], 'download') == 0) + { + $l = jirafeau_get_link ($_POST['link']); + if (!count ($l)) + return; + $p = s2p ($l['md5']); + header ('Content-Length: ' . $l['file_size']); + header ('Content-Type: ' . $l['mime_type']); + header ('Content-Disposition: attachment; filename="' . + $l['file_name'] . '"'); + if (file_exists(VAR_FILES . $p . $l['md5'])) + readfile (VAR_FILES . $p . $l['md5']); + } } require (JIRAFEAU_ROOT.'lib/template/footer.php');