mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/12755] Apply de morgan to conditional
PHPBB3-12755
This commit is contained in:
parent
309dbb4ef9
commit
8b3cc9a6c4
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue