X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/53517d3b939f85007001beb3a01a32b032a9070b..72c6eff9ee6ab700aff022ea88511f54e7a4e97c:/admin.php?ds=sidebyside diff --git a/admin.php b/admin.php index e9e5342..87dbcea 100755 --- a/admin.php +++ b/admin.php @@ -219,7 +219,7 @@ if (isset ($_POST['action'])) } elseif (strcmp ($_POST['action'], 'delete_link') == 0) { - jirafeau_delete ($_POST['link']); + jirafeau_delete_link ($_POST['link']); echo '
'; } @@ -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');