Revize 1922
Přidáno uživatelem Ondřej Fibich před více než 11 roky(ů)
freenetis/branches/1.1/application/helpers/download.php | ||
---|---|---|
|
||
if (isset($filepath))
|
||
{
|
||
readfile($filepath);
|
||
// // Open the file
|
||
// $handle = fopen($filepath, 'rb');
|
||
//
|
||
// // Send the file data
|
||
// fpassthru($handle);
|
||
//
|
||
// // Close the file
|
||
// fclose($handle);
|
||
// Open the file
|
||
$handle = fopen($filepath, 'rb');
|
||
|
||
// Send the file data
|
||
fpassthru($handle);
|
||
|
||
// Close the file
|
||
fclose($handle);
|
||
}
|
||
else
|
||
{
|
Také k dispozici: Unified diff
Zapomenuty debug z predchoziho commitu.