0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-download_userfile.php
<?php /** * @package tikiwiki */ // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // 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. // $Id: tiki-download_userfile.php 53802 2015-02-06 00:11:35Z jyhem $ $force_no_compression = true; require_once ('tiki-setup.php'); include_once ('lib/userfiles/userfileslib.php'); if (!isset($_REQUEST["fileId"])) { die; } $access->check_feature('feature_userfiles'); $info = $userfileslib->get_userfile($user, $_REQUEST["fileId"]); if ( empty($info['filetype']) || $info['filetype'] == 'application/x-octetstream' || $info['filetype'] == 'application/octet-stream' ) { $mimelib = TikiLib::lib('mime'); $info['filetype'] = $mimelib->from_filename($info['filename']); } $type = &$info["filetype"]; $file = &$info["filename"]; $content = &$info["data"]; session_write_close(); header("Content-type: $type"); header("Content-Disposition: inline; filename=\"$file\""); if ($info["path"]) { readfile($prefs['uf_use_dir'] . $info["path"]); } else { echo "$content"; }