mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
[ticket/12755] Apply de morgan to conditional
PHPBB3-12755
This commit is contained in:
@@ -806,7 +806,7 @@ class fileupload
|
|||||||
$length = false;
|
$length = false;
|
||||||
$timer_stop = time() + $this->upload_timeout;
|
$timer_stop = time() + $this->upload_timeout;
|
||||||
|
|
||||||
while (!($length && $filesize >= $length) && !@feof($fsock))
|
while ((!$length || $filesize < $length) && !@feof($fsock))
|
||||||
{
|
{
|
||||||
if ($get_info)
|
if ($get_info)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user