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:
parent
309dbb4ef9
commit
8b3cc9a6c4
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user