mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-14 13:26:01 +02:00
fixes #1297 check output buffer before cleaning it
This commit is contained in:
+6
-2
@@ -221,8 +221,12 @@ if (ini_get('safe_mode') == 0)
|
|||||||
@set_time_limit(0);
|
@set_time_limit(0);
|
||||||
}
|
}
|
||||||
// Without clean and flush there may be some image download problems, or image can be corrupted after download
|
// Without clean and flush there may be some image download problems, or image can be corrupted after download
|
||||||
ob_clean();
|
if (ob_get_length() !== FALSE)
|
||||||
flush();
|
{
|
||||||
|
ob_clean();
|
||||||
|
flush();
|
||||||
|
}
|
||||||
|
|
||||||
@readfile($file);
|
@readfile($file);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user