X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/f9f84c1e4389dc23e77b51dadd53410377128cfc..c5187160be16af5c5574a020ff83e7da586c4338:/admin.php 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 '
' . NL; echo '

' . t('Deleted links') . ' : ' . $count . '

'; } + 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');