mirror of
https://github.com/Mibew/java.git
synced 2025-01-22 17:40:35 +03:00
Fix the problem (by Mohsen) when fpassthru is disabled.
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@657 c66351dc-e62f-0410-b875-e3a5c0b9693f
This commit is contained in:
parent
fa4358687c
commit
20128757fc
@ -60,6 +60,14 @@ $filename = "locales/${lang}/button/${image}_${image_postfix}.gif";
|
|||||||
$fp = fopen($filename, 'rb') or die("no image");
|
$fp = fopen($filename, 'rb') or die("no image");
|
||||||
header("Content-Type: image/gif");
|
header("Content-Type: image/gif");
|
||||||
header("Content-Length: ".filesize($filename));
|
header("Content-Length: ".filesize($filename));
|
||||||
fpassthru($fp);
|
if(function_exists('fpassthru')){
|
||||||
|
@fpassthru($fp);
|
||||||
|
} else {
|
||||||
|
while( (!feof($fp)) && (connection_status()==0)){
|
||||||
|
print(fread($fp, 1024*8));
|
||||||
|
flush();
|
||||||
|
}
|
||||||
|
fclose($fp);
|
||||||
|
}
|
||||||
exit;
|
exit;
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user