From a587217f47e8912713cc70ea9e53aaa2cab5462c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Thu, 16 Jun 2022 19:39:49 +0200 Subject: [PATCH] Fixed "Argument 4 passed to Friendica\Protocol\DFRN::processVerbs() must be of the type bool" --- src/Protocol/DFRN.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index fc72f7e371..d06e65c603 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -2074,6 +2074,9 @@ class DFRN } } + // Need to initialize variable, otherwise E_NOTICE will happen + $is_like = false; + if (!self::processVerbs($entrytype, $importer, $item, $is_like)) { Logger::info("Exiting because 'processVerbs' told us so"); return;