From: Roland Häder Date: Thu, 16 Jun 2022 17:39:49 +0000 (+0200) Subject: Fixed "Argument 4 passed to Friendica\Protocol\DFRN::processVerbs() must be of the... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=inline;h=a587217f47e8912713cc70ea9e53aaa2cab5462c;p=friendica.git Fixed "Argument 4 passed to Friendica\Protocol\DFRN::processVerbs() must be of the type bool" --- 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;