From: Matthew Exon Date: Wed, 3 Jul 2024 06:03:33 +0000 (+0200) Subject: Use standard boolean operator X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f32592e1488934682bc86127d38012d4a590e8cf;p=friendica.git Use standard boolean operator --- diff --git a/src/Network/HTTPClient/Response/CurlResult.php b/src/Network/HTTPClient/Response/CurlResult.php index 79aa9c722f..2680a8b806 100644 --- a/src/Network/HTTPClient/Response/CurlResult.php +++ b/src/Network/HTTPClient/Response/CurlResult.php @@ -230,7 +230,7 @@ class CurlResult implements ICanHandleHttpResponses $this->redirectUrl = (string)Uri::fromParts((array)$redirect_parts); $this->isRedirectUrl = true; - $this->redirectIsPermanent = $this->returnCode == 301 or $this->returnCode == 308; + $this->redirectIsPermanent = $this->returnCode == 301 || $this->returnCode == 308; } else { $this->isRedirectUrl = false; $this->redirectIsPermanent = false;