1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-19 23:32:02 +02:00

[ticket/12755] Apply de morgan to conditional

PHPBB3-12755
This commit is contained in:
Marc Alexander 2014-06-24 19:53:32 +02:00
parent 309dbb4ef9
commit 8b3cc9a6c4

View File

@ -806,7 +806,7 @@ class fileupload
$length = false;
$timer_stop = time() + $this->upload_timeout;
while (!($length && $filesize >= $length) && !@feof($fsock))
while ((!$length || $filesize < $length) && !@feof($fsock))
{
if ($get_info)
{