0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-download_forum_attachment.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-download_forum_attachment.php,v 1.8.2.3 2005/05/07 01:03:08 redflo Exp $ // Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // Initialization include_once("lib/init/initlib.php"); require_once ('tiki-setup_base.php'); include_once ('lib/commentslib.php'); // roysinn: shouldn't need attach permission for download . . . //if ($tiki_p_forum_attach != 'y') { // die; //} if (!isset($_REQUEST["attId"])) { die; } $commentslib = new Comments($dbTiki); $info = $commentslib->get_thread_attachment($_REQUEST["attId"]); $type = &$info["filetype"]; $file = &$info["filename"]; $content = &$info["data"]; session_write_close(); header ("Content-type: $type"); header ("Content-Disposition: inline; filename=\"$file\""); // Added Damian March04 request of Akira123 header ("Expires: 0"); header ("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header ("Pragma: Public"); if ($info["dir"]) { readfile ($info["dir"] . $info["path"]); } else { echo "$content"; } ?>