From: fabrixxm <fabrix.xm@gmail.com>
Date: Wed, 21 Nov 2018 15:37:32 +0000 (+0100)
Subject: Code standards
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b0acf4284d3be9621edc73cb25aaebd838486f97;p=friendica.git

Code standards
---

diff --git a/src/Module/Photo.php b/src/Module/Photo.php
index a175f7c090..b20c2657a5 100644
--- a/src/Module/Photo.php
+++ b/src/Module/Photo.php
@@ -72,7 +72,7 @@ class Photo extends BaseModule
 			break;
 		}
 
-		if ($photo===false) {
+		if ($photo === false) {
 			// not using System::httpExit() because we don't want html here.
 			header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found" , true, 404);
 			killme();